@@ -29,7 +29,9 @@ parameters:
29
29
closureUsesThis : %strictRules.allRules%
30
30
matchingInheritedMethodNames : %strictRules.allRules%
31
31
numericOperandsInArithmeticOperators : %strictRules.allRules%
32
- strictCalls : %strictRules.allRules%
32
+ strictFunctionCalls : %strictRules.allRules%
33
+ dynamicCallOnStaticMethod : %strictRules.allRules%
34
+ dynamicCallOnStaticMethodsCallable : %strictRules.allRules%
33
35
switchConditionsMatchingType : %strictRules.allRules%
34
36
noVariableVariables : %strictRules.allRules%
35
37
strictArrayFilter : [%strictRules.allRules% , %featureToggles.bleedingEdge% ]
@@ -49,7 +51,9 @@ parametersSchema:
49
51
closureUsesThis : anyOf (bool (), arrayOf (bool ()))
50
52
matchingInheritedMethodNames : anyOf (bool (), arrayOf (bool ()))
51
53
numericOperandsInArithmeticOperators : anyOf (bool (), arrayOf (bool ()))
52
- strictCalls : anyOf (bool (), arrayOf (bool ()))
54
+ strictFunctionCalls : anyOf (bool (), arrayOf (bool ()))
55
+ dynamicCallOnStaticMethod : anyOf (bool (), arrayOf (bool ()))
56
+ dynamicCallOnStaticMethodsCallable : anyOf (bool (), arrayOf (bool ()))
53
57
switchConditionsMatchingType : anyOf (bool (), arrayOf (bool ()))
54
58
noVariableVariables : anyOf (bool (), arrayOf (bool ()))
55
59
strictArrayFilter : anyOf (bool (), arrayOf (bool ()))
@@ -113,11 +117,11 @@ conditionalTags:
113
117
PHPStan\Rules\Operators\OperandsInArithmeticSubtractionRule :
114
118
phpstan.rules.rule : %strictRules.numericOperandsInArithmeticOperators%
115
119
PHPStan\Rules\StrictCalls\DynamicCallOnStaticMethodsRule :
116
- phpstan.rules.rule : %strictRules.strictCalls %
120
+ phpstan.rules.rule : %strictRules.dynamicCallOnStaticMethod %
117
121
PHPStan\Rules\StrictCalls\DynamicCallOnStaticMethodsCallableRule :
118
- phpstan.rules.rule : %strictRules.strictCalls %
122
+ phpstan.rules.rule : %strictRules.dynamicCallOnStaticMethodsCallable %
119
123
PHPStan\Rules\StrictCalls\StrictFunctionCallsRule :
120
- phpstan.rules.rule : %strictRules.strictCalls %
124
+ phpstan.rules.rule : %strictRules.strictFunctionCalls %
121
125
PHPStan\Rules\SwitchConditions\MatchingTypeInSwitchCaseConditionRule :
122
126
phpstan.rules.rule : %strictRules.switchConditionsMatchingType%
123
127
PHPStan\Rules\VariableVariables\VariableMethodCallRule :
0 commit comments