mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-15 16:07:55 +03:00
63231900f9
PHPStan errors like these: Call to method Ramsey\Uuid\Builder\FallbackBuilder::build() on a separate line has no effect. can be safely ignored here. The lack of effect is intentional as we are testing exceptions.
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
parameters:
|
|
tmpDir: ../build/cache/phpstan
|
|
level: max
|
|
paths:
|
|
- .
|
|
bootstrapFiles:
|
|
- ./phpstan-bootstrap.php
|
|
checkMissingIterableValueType: false
|
|
reportUnmatchedIgnoredErrors: false
|
|
excludes_analyse:
|
|
- ./ExpectedBehaviorTest.php
|
|
- ./phpstan-bootstrap.php
|
|
ignoreErrors:
|
|
-
|
|
message: "#^Function uuid_create\\(\\) has no return typehint specified\\.$#"
|
|
count: 1
|
|
path: phpstan-bootstrap.php
|
|
-
|
|
message: "#^Function uuid_create\\(\\) has parameter \\$uuid_type with no typehint specified\\.$#"
|
|
count: 1
|
|
path: phpstan-bootstrap.php
|
|
-
|
|
message: "#^Function uuid_parse\\(\\) has no return typehint specified\\.$#"
|
|
count: 1
|
|
path: phpstan-bootstrap.php
|
|
-
|
|
message: "#^Function uuid_parse\\(\\) has parameter \\$uuid with no typehint specified\\.$#"
|
|
count: 1
|
|
path: phpstan-bootstrap.php
|
|
-
|
|
message: "#^Call to method Ramsey\\\\Uuid\\\\.+ on a separate line has no effect\\.$#"
|
|
paths:
|
|
- Builder/*Test.php
|
|
- Converter/*Test.php
|
|
- Generator/*Test.php
|
|
- Guid/*Test.php
|
|
- Nonstandard/*Test.php
|
|
- Rfc4122/*Test.php
|