-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.neon
More file actions
28 lines (28 loc) · 883 Bytes
/
phpstan.neon
File metadata and controls
28 lines (28 loc) · 883 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
26
27
28
includes:
- phar://phpstan.phar/conf/bleedingEdge.neon
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
- vendor/phpstan/phpstan-strict-rules/rules.neon
parameters:
level: max
phpVersion:
min: 70400
max: 80400
parallel:
jobSize: 20
maximumNumberOfProcesses: 4
minimumNumberOfJobsPerProcess: 2
paths:
- src
tmpDir: vendor/.cache.phpstan
rememberPossiblyImpureFunctionValues: false
checkTooWideReturnTypesInProtectedAndPublicMethods: true
checkImplicitMixed: true
checkBenevolentUnionTypes: true
reportPossiblyNonexistentGeneralArrayOffset: true
reportPossiblyNonexistentConstantArrayOffset: true
reportAlwaysTrueInLastCondition: true
reportAnyTypeWideningInVarTag: true
checkMissingOverrideMethodAttribute: false
inferPrivatePropertyTypeFromConstructor: true
tipsOfTheDay: false
checkMissingCallableSignature: true