-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathphpstan.neon
40 lines (33 loc) · 1.44 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
35
36
37
38
39
40
includes:
- vendor-bin/phpstan/config/config.php
- vendor-bin/phpstan/vendor/phpstan/phpstan/conf/bleedingEdge.neon
- vendor-bin/phpstan/vendor/phpstan/phpstan-phpunit/extension.neon
- vendor-bin/phpstan/vendor/phpstan/phpstan-phpunit/rules.neon
- vendor-bin/phpstan/vendor/phpstan/phpstan-symfony/extension.neon
- vendor-bin/phpstan/vendor/phpstan/phpstan-symfony/rules.neon
- vendor-bin/phpstan/vendor/slam/phpstan-extensions/conf/symfony-rules.neon
rules:
- TheCodingMachine\PHPStan\Rules\Exceptions\DoNotThrowExceptionBaseClassRule
- TheCodingMachine\PHPStan\Rules\Exceptions\ThrowMustBundlePreviousExceptionRule
parameters:
level: 6
featureToggles:
alwaysTrueAlwaysReported: false
detectDeadTypeInMultiCatch: false
disableCheckMissingIterableValueType: false
paths:
- %currentWorkingDirectory%/api
- %currentWorkingDirectory%/public
ignoreErrors:
- identifier: missingType.iterableValue
treatPhpDocTypesAsCertain: false
rememberPossiblyImpureFunctionValues: false
#services:
# - class: Contao\Tools\PHPStan\HelperReturnTypeExtension
# tags: [phpstan.broker.dynamicMethodReturnTypeExtension]
#
# - class: Contao\Tools\PHPStan\ExtensionReturnTypeExtension
# tags: [phpstan.broker.dynamicMethodReturnTypeExtension]
#
# - class: Contao\Tools\PHPStan\GraphReturnTypeExtension
# tags: [phpstan.broker.dynamicMethodReturnTypeExtension]