@@ -29,7 +29,9 @@ parameters:
2929closureUsesThis : %strictRules.allRules%
3030matchingInheritedMethodNames : %strictRules.allRules%
3131numericOperandsInArithmeticOperators : %strictRules.allRules%
32- strictCalls : %strictRules.allRules%
32+ strictFunctionCalls : %strictRules.allRules%
33+ dynamicCallOnStaticMethod : %strictRules.allRules%
34+ dynamicCallOnStaticMethodsCallable : %strictRules.allRules%
3335switchConditionsMatchingType : %strictRules.allRules%
3436noVariableVariables : %strictRules.allRules%
3537strictArrayFilter : [%strictRules.allRules% , %featureToggles.bleedingEdge% ]
@@ -49,7 +51,9 @@ parametersSchema:
4951closureUsesThis : anyOf (bool (), arrayOf (bool ()))
5052matchingInheritedMethodNames : anyOf (bool (), arrayOf (bool ()))
5153numericOperandsInArithmeticOperators : 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 ()))
5357switchConditionsMatchingType : anyOf (bool (), arrayOf (bool ()))
5458noVariableVariables : anyOf (bool (), arrayOf (bool ()))
5559strictArrayFilter : anyOf (bool (), arrayOf (bool ()))
@@ -113,11 +117,11 @@ conditionalTags:
113117PHPStan\Rules\Operators\OperandsInArithmeticSubtractionRule :
114118phpstan.rules.rule : %strictRules.numericOperandsInArithmeticOperators%
115119PHPStan\Rules\StrictCalls\DynamicCallOnStaticMethodsRule :
116- phpstan.rules.rule : %strictRules.strictCalls %
120+ phpstan.rules.rule : %strictRules.dynamicCallOnStaticMethod %
117121PHPStan\Rules\StrictCalls\DynamicCallOnStaticMethodsCallableRule :
118- phpstan.rules.rule : %strictRules.strictCalls %
122+ phpstan.rules.rule : %strictRules.dynamicCallOnStaticMethodsCallable %
119123PHPStan\Rules\StrictCalls\StrictFunctionCallsRule :
120- phpstan.rules.rule : %strictRules.strictCalls %
124+ phpstan.rules.rule : %strictRules.strictFunctionCalls %
121125PHPStan\Rules\SwitchConditions\MatchingTypeInSwitchCaseConditionRule :
122126phpstan.rules.rule : %strictRules.switchConditionsMatchingType%
123127PHPStan\Rules\VariableVariables\VariableMethodCallRule :
0 commit comments