-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpstan.neon.dist
More file actions
39 lines (34 loc) · 1.16 KB
/
phpstan.neon.dist
File metadata and controls
39 lines (34 loc) · 1.16 KB
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
parameters:
bootstrapFiles:
- vendor/autoload.php
level: max
paths:
- src
excludePaths:
- tests
reportUnmatchedIgnoredErrors: true
# Typing and strictness
checkTooWideReturnTypesInProtectedAndPublicMethods: true
checkUninitializedProperties: true
checkDynamicProperties: true
inferPrivatePropertyTypeFromConstructor: true
treatPhpDocTypesAsCertain: false
# Signature and type checks
checkFunctionNameCase: true
checkInternalClassCaseSensitivity: true
checkExplicitMixedMissingReturn: true
checkBenevolentUnionTypes: true
reportMaybesInMethodSignatures: true
reportMaybesInPropertyPhpDocTypes: true
reportStaticMethodSignatures: true
# PHPDoc checks
reportWrongPhpDocTypeInVarTag: true
reportAlwaysTrueInLastCondition: true
reportPossiblyNonexistentGeneralArrayOffset: true
reportPossiblyNonexistentConstantArrayOffset: true
# Purity assumptions
rememberPossiblyImpureFunctionValues: false
# Scope pollution control
polluteScopeWithLoopInitialAssignments: false
polluteScopeWithAlwaysIterableForeach: false
polluteScopeWithBlock: false