-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathphpstan.neon
More file actions
25 lines (23 loc) · 694 Bytes
/
phpstan.neon
File metadata and controls
25 lines (23 loc) · 694 Bytes
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
includes:
- vendor/phpstan/phpstan-phpunit/extension.neon
- vendor/phpstan/phpstan-strict-rules/rules.neon
- vendor/shipmonk/phpstan-rules/rules.neon
parameters:
level: 5
paths:
- src
strictRules:
dynamicCallOnStaticMethod: false
booleansInConditions: false
disallowedShortTernary: false
noVariableVariables: false
strictArrayFilter: false
shipmonkRules:
enableAllRules: false
enforceNativeReturnTypehint:
enabled: true
tmpDir: build/phpstan
excludePaths:
- 'src/Twig'
- 'src/Controllers/TelescopeController.php'
- 'src/DataCollector/PennantCollector.php'