forked from sulu/sulu-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpstan.neon
26 lines (25 loc) · 1.06 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
includes:
- vendor/jangregor/phpstan-prophecy/extension.neon
- vendor/phpstan/phpstan-doctrine/extension.neon
- vendor/phpstan/phpstan-doctrine/rules.neon
- vendor/phpstan/phpstan-symfony/extension.neon
- vendor/phpstan/phpstan-phpunit/extension.neon
- vendor/phpstan/phpstan-phpunit/rules.neon
- vendor/phpstan/phpstan-webmozart-assert/extension.neon
- vendor/thecodingmachine/phpstan-strict-rules/phpstan-strict-rules.neon
parameters:
level: max
paths:
- src
- tests
- config
inferPrivatePropertyTypeFromConstructor: true
symfony:
container_xml_path: '%rootDir%/../../../var/cache/website/dev/App_KernelDevDebugContainer.xml'
console_application_loader: 'tests/phpstan/console-application.php'
doctrine:
objectManagerLoader: 'tests/phpstan/object-manager.php'
excludePaths:
- '%rootDir%/../../../config/packages/phpcr.php'
- '%rootDir%/../../../src/DataFixtures/Document/DocumentFixture.php'
- '%rootDir%/../../../src/DataFixtures/ORM/AppFixture.php'