forked from enlightn/enlightn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpstan.neon
102 lines (99 loc) · 3.54 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
includes:
- %rootDir%/../../nunomaduro/larastan/extension.neon
parameters:
customRulesetUsed: true
noUnnecessaryCollectionCall: true
noUnnecessaryCollectionCallOnly: []
noUnnecessaryCollectionCallExcept: []
checkModelProperties: false
reportMagicMethods: false
reportMagicProperties: false
checkFunctionNameCase: false
checkPhpDocMethodSignatures: false
checkExplicitMixedMissingReturn: false
checkDynamicProperties: false
checkPhpDocMissingReturn: false
checkMaybeUndefinedVariables: true
cliArgumentsVariablesRegistered: true
checkNullables: false
checkThisOnly: false
checkUnionTypes: true
checkExplicitMixed: false
stubFiles:
- stubs/Request.stub
rules:
- Enlightn\Enlightn\PHPStan\FillableForeignKeyModelRule
- Enlightn\Enlightn\PHPStan\MassAssignmentModelInstanceRule
- Enlightn\Enlightn\PHPStan\MassAssignmentModelStaticRule
- Enlightn\Enlightn\PHPStan\MassAssignmentBuilderInstanceRule
- PHPStan\Rules\Arrays\DeadForeachRule
- PHPStan\Rules\Arrays\IterableInForeachRule
- PHPStan\Rules\Arrays\OffsetAccessAssignmentRule
- PHPStan\Rules\Arrays\OffsetAccessAssignOpRule
- PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule
- PHPStan\Rules\Classes\ClassConstantRule
- PHPStan\Rules\DeadCode\NoopRule
- PHPStan\Rules\DeadCode\UnreachableStatementRule
- PHPStan\Rules\DeadCode\UnusedPrivateConstantRule
- PHPStan\Rules\DeadCode\UnusedPrivateMethodRule
- PHPStan\Rules\Functions\CallToFunctionParametersRule
- PHPStan\Rules\Functions\PrintfParametersRule
- PHPStan\Rules\Functions\ReturnTypeRule
- PHPStan\Rules\Methods\CallMethodsRule
- PHPStan\Rules\Methods\CallStaticMethodsRule
- PHPStan\Rules\Methods\ReturnTypeRule
- PHPStan\Rules\Variables\UnsetRule
services:
-
class: PHPStan\Rules\Functions\CallToNonExistentFunctionRule
tags:
- phpstan.rules.rule
arguments:
checkFunctionNameCase: %checkFunctionNameCase%
-
class: PHPStan\Rules\Methods\OverridingMethodRule
arguments:
checkPhpDocMethodSignatures: %checkPhpDocMethodSignatures%
tags:
- phpstan.rules.rule
-
class: PHPStan\Rules\Missing\MissingReturnRule
arguments:
checkExplicitMixedMissingReturn: %checkExplicitMixedMissingReturn%
checkPhpDocMissingReturn: %checkPhpDocMissingReturn%
tags:
- phpstan.rules.rule
-
class: PHPStan\Rules\Namespaces\ExistingNamesInUseRule
tags:
- phpstan.rules.rule
arguments:
checkFunctionNameCase: %checkFunctionNameCase%
-
class: PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule
tags:
- phpstan.rules.rule
arguments:
checkFunctionNameCase: %checkFunctionNameCase%
-
class: PHPStan\Rules\Properties\AccessPropertiesRule
tags:
- phpstan.rules.rule
arguments:
reportMagicProperties: %reportMagicProperties%
checkDynamicProperties: %checkDynamicProperties%
-
class: PHPStan\Rules\Variables\DefinedVariableRule
arguments:
cliArgumentsVariablesRegistered: %cliArgumentsVariablesRegistered%
checkMaybeUndefinedVariables: %checkMaybeUndefinedVariables%
tags:
- phpstan.rules.rule
-
class: Enlightn\Enlightn\PHPStan\RequestDataTypeNodeResolverExtension
tags:
- phpstan.phpDoc.typeNodeResolverExtension
-
class: Enlightn\Enlightn\PHPStan\RequestArrayDataTypeNodeResolverExtension
tags:
- phpstan.phpDoc.typeNodeResolverExtension