-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpstan.dist.neon
50 lines (38 loc) · 1.34 KB
/
phpstan.dist.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
41
42
43
44
45
46
47
48
49
50
parameters:
level: 5
paths:
- src
# - tests
#excludePaths:
# - /
inferPrivatePropertyTypeFromConstructor: true
treatPhpDocTypesAsCertain: false
#symfony:
# container_xml_path: '%rootDir%/../../../var/cache/dev/App_KernelDevDebugContainer.xml'
#doctrine:
# objectManagerLoader: tests/object-manager.php
# allowNullablePropertyForRequiredField: true
checkUninitializedProperties: true
checkFunctionNameCase: false
checkAlwaysTrueInstanceof: false
checkAlwaysTrueCheckTypeFunctionCall: false
checkAlwaysTrueStrictComparison: false
reportAlwaysTrueInLastCondition: false
reportMaybesInPropertyPhpDocTypes: false
reportMaybesInMethodSignatures: false
strictRules:
disallowedLooseComparison: false
booleansInConditions: false
uselessCast: false
requireParentConstructorCall: true
disallowedConstructs: false
overwriteVariablesWithLoop: false
closureUsesThis: false
matchingInheritedMethodNames: true
numericOperandsInArithmeticOperators: true
strictCalls: true
switchConditionsMatchingType: false
noVariableVariables: false
#ignoreErrors:
# # Ignore errors caused by complex mapping with AbstractStructuralDBElement
# - '#AbstractStructuralDBElement does not have a field named \$parent#'