@@ -22,6 +22,10 @@ parameters:
22
22
uselessCast : %strictRules.allRules%
23
23
requireParentConstructorCall : %strictRules.allRules%
24
24
disallowedConstructs : %strictRules.allRules%
25
+ disallowedBacktick : %strictRules.allRules%
26
+ disallowedEmpty : %strictRules.allRules%
27
+ disallowedImplicitArrayCreation : %strictRules.allRules%
28
+ disallowedShortTernary : %strictRules.allRules%
25
29
overwriteVariablesWithLoop : %strictRules.allRules%
26
30
closureUsesThis : %strictRules.allRules%
27
31
matchingInheritedMethodNames : %strictRules.allRules%
@@ -39,6 +43,10 @@ parametersSchema:
39
43
uselessCast : anyOf (bool (), arrayOf (bool ()))
40
44
requireParentConstructorCall : anyOf (bool (), arrayOf (bool ()))
41
45
disallowedConstructs : anyOf (bool (), arrayOf (bool ()))
46
+ disallowedBacktick : anyOf (bool (), arrayOf (bool ()))
47
+ disallowedEmpty : anyOf (bool (), arrayOf (bool ()))
48
+ disallowedImplicitArrayCreation : anyOf (bool (), arrayOf (bool ()))
49
+ disallowedShortTernary : anyOf (bool (), arrayOf (bool ()))
42
50
overwriteVariablesWithLoop : anyOf (bool (), arrayOf (bool ()))
43
51
closureUsesThis : anyOf (bool (), arrayOf (bool ()))
44
52
matchingInheritedMethodNames : anyOf (bool (), arrayOf (bool ()))
@@ -69,13 +77,13 @@ conditionalTags:
69
77
PHPStan\Rules\Classes\RequireParentConstructCallRule :
70
78
phpstan.rules.rule : %strictRules.requireParentConstructorCall%
71
79
PHPStan\Rules\DisallowedConstructs\DisallowedBacktickRule :
72
- phpstan.rules.rule : %strictRules.disallowedConstructs %
80
+ phpstan.rules.rule : %strictRules.disallowedBacktick %
73
81
PHPStan\Rules\DisallowedConstructs\DisallowedEmptyRule :
74
- phpstan.rules.rule : %strictRules.disallowedConstructs %
82
+ phpstan.rules.rule : %strictRules.disallowedEmpty %
75
83
PHPStan\Rules\DisallowedConstructs\DisallowedImplicitArrayCreationRule :
76
- phpstan.rules.rule : %strictRules.disallowedConstructs %
84
+ phpstan.rules.rule : %strictRules.disallowedImplicitArrayCreation %
77
85
PHPStan\Rules\DisallowedConstructs\DisallowedShortTernaryRule :
78
- phpstan.rules.rule : %strictRules.disallowedConstructs %
86
+ phpstan.rules.rule : %strictRules.disallowedShortTernary %
79
87
PHPStan\Rules\ForeachLoop\OverwriteVariablesWithForeachRule :
80
88
phpstan.rules.rule : %strictRules.overwriteVariablesWithLoop%
81
89
PHPStan\Rules\ForLoop\OverwriteVariablesWithForLoopInitRule :
0 commit comments