-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathphpstan.neon
34 lines (33 loc) · 1.49 KB
/
phpstan.neon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
includes:
- vendor/phpstan/phpstan-strict-rules/rules.neon
- vendor/phpstan/phpstan-phpunit/extension.neon
- extension.neon
- tests/Unit/Type/data/context-get-aspect-return-types.neon
- tests/Unit/Type/data/request-get-attribute-return-types.neon
- tests/Unit/Type/data/site-get-attribute-return-types.neon
parameters:
level: 8
paths:
- src
- tests
reportUnmatchedIgnoredErrors: false
excludePaths:
- '*tests/*/Fixtures/*'
- '*tests/*/Fixture/*'
- '*tests/*/Source/*'
- '*tests/*/data/*'
ignoreErrors:
-
message: "#^Calling PHPStan\\\\Reflection\\\\InitializerExprTypeResolver\\:\\:getClassConstFetchType\\(\\) is not covered by backward compatibility promise\\. The method might change in a minor PHPStan version\\.$#"
count: 1
path: src/Rule/ValidatorResolverOptionsRule.php
-
message: '#^Although PHPStan\\Reflection\\Php\\PhpPropertyReflection is covered by backward compatibility promise, this instanceof assumption might break because it''s not guaranteed to always stay the same\.$#'
identifier: phpstanApi.instanceofAssumption
count: 1
path: src/Rule/ValidatorResolverOptionsRule.php
-
message: '#^Node attribute ''parent'' is no longer available\.$#'
identifier: phpParser.nodeConnectingAttribute
count: 2
path: src/Type/MathUtilityTypeSpecifyingExtension.php