-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan.neon
27 lines (23 loc) · 967 Bytes
/
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
includes:
- /tools/.composer/vendor-bin/phpstan/vendor/phpstan/phpstan-symfony/extension.neon
- /tools/.composer/vendor-bin/phpstan/vendor/phpstan/phpstan-doctrine/extension.neon
- /tools/.composer/vendor-bin/phpstan/vendor/phpstan/phpstan-phpunit/extension.neon
- /tools/.composer/vendor-bin/phpstan/vendor/jangregor/phpstan-prophecy/src/extension.neon
parameters:
#reportUnmatchedIgnoredErrors: false
tmpDir: %currentWorkingDirectory%/var/phpstan
level: 5
paths:
- ./src
- ./public
- ./bin
excludes_analyse:
- var/
- vendor/
- templates/
- translations/
- %currentWorkingDirectory%/src/Module/WebhostingModule/** # Disabled for now
- %currentWorkingDirectory%/src/*/*/Tests/**
checkNullables: false # To many false positives
symfony:
container_xml_path: %currentWorkingDirectory%/var/cache/dev/srcParkManager_KernelDevDebugContainer.xml