forked from bmitch/churn-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.neon
More file actions
22 lines (18 loc) · 803 Bytes
/
phpstan.neon
File metadata and controls
22 lines (18 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
parameters:
level: 8
paths:
- %currentWorkingDirectory%/src/
- %currentWorkingDirectory%/tests/
bootstrapFiles:
- vendor/bin/.phpunit/phpunit/vendor/autoload.php
- tests/Integration/Command/Assets/hooks
checkGenericClassInNonGenericObjectType: false
reportUnmatchedIgnoredErrors: true
ignoreErrors:
- '/^Casting to .+ something that''s already/'
- "#Call to function method_exists\\(\\) with Symfony\\\\Component\\\\Console\\\\Application and 'addCommand' will always evaluate to true#"
- "#Variable method call on Symfony\\\\Component\\\\Console\\\\Application#"
checkTooWideReturnTypesInProtectedAndPublicMethods: true
checkUninitializedProperties: true
symfony:
console_application_loader: %currentWorkingDirectory%/tests/console-application.php