-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathphpstan.neon
49 lines (47 loc) · 1.24 KB
/
phpstan.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
parameters:
level: 6
reportUnmatchedIgnoredErrors: false
ignoreErrors:
-
identifier: missingType.iterableValue
-
identifier: missingType.generics
paths:
- src
bootstrapFiles:
- phpstan-bootstrap.php
ergebnis:
final:
enabled: false
finalInAbstractClass:
enabled: false
noCompact:
enabled: false
noConstructorParameterWithDefaultValue:
enabled: false
noErrorSuppression:
enabled: false
noEval:
enabled: false
noExtends:
enabled: false
noIsset:
enabled: false
noNullableReturnTypeDeclaration:
enabled: false
noParameterWithContainerTypeDeclaration:
enabled: false
noParameterWithNullableTypeDeclaration:
enabled: false
noParameterWithNullDefaultValue:
enabled: false
noSwitch:
enabled: false
privateInFinalClass:
enabled: false
testCaseWithSuffix:
enabled: false
includes:
- vendor/ergebnis/phpstan-rules/rules.neon
- vendor/phpstan/phpstan-symfony/extension.neon
- phpstan-baseline.neon