-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathphpstan.neon.dist
29 lines (29 loc) · 944 Bytes
/
phpstan.neon.dist
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
parameters:
tmpDir: build/phpstan
level: 6
paths:
- src
- tests
bootstrapFiles:
- vendor/codeigniter4/codeigniter4/system/Test/bootstrap.php
parallel:
processTimeout: 300.0
dynamicConstantNames:
- ENVIRONMENT
scanDirectories:
- vendor/codeigniter4/codeigniter4/app/Config
- vendor/codeigniter4/codeigniter4/system
scanFiles:
- vendor/codeigniter4/codeigniter4/app/Config/Constants.php
- vendor/codeigniter4/codeigniter4/system/bootstrap.php
polluteScopeWithLoopInitialAssignments: false
polluteScopeWithAlwaysIterableForeach: false
checkAlwaysTrueCheckTypeFunctionCall: true
checkAlwaysTrueInstanceof: true
checkAlwaysTrueStrictComparison: true
checkExplicitMixedMissingReturn: true
checkFunctionNameCase: true
checkMissingClosureNativeReturnTypehintRule: true
checkMissingIterableValueType: false
reportMaybesInMethodSignatures: true
reportStaticMethodSignatures: true