@@ -22,6 +22,10 @@ parameters:
2222uselessCast : %strictRules.allRules%
2323requireParentConstructorCall : %strictRules.allRules%
2424disallowedConstructs : %strictRules.allRules%
25+ disallowedBacktick : %strictRules.allRules%
26+ disallowedEmpty : %strictRules.allRules%
27+ disallowedImplicitArrayCreation : %strictRules.allRules%
28+ disallowedShortTernary : %strictRules.allRules%
2529overwriteVariablesWithLoop : %strictRules.allRules%
2630closureUsesThis : %strictRules.allRules%
2731matchingInheritedMethodNames : %strictRules.allRules%
@@ -39,6 +43,10 @@ parametersSchema:
3943uselessCast : anyOf (bool (), arrayOf (bool ()))
4044requireParentConstructorCall : anyOf (bool (), arrayOf (bool ()))
4145disallowedConstructs : 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 ()))
4250overwriteVariablesWithLoop : anyOf (bool (), arrayOf (bool ()))
4351closureUsesThis : anyOf (bool (), arrayOf (bool ()))
4452matchingInheritedMethodNames : anyOf (bool (), arrayOf (bool ()))
@@ -69,13 +77,13 @@ conditionalTags:
6977PHPStan\Rules\Classes\RequireParentConstructCallRule :
7078phpstan.rules.rule : %strictRules.requireParentConstructorCall%
7179PHPStan\Rules\DisallowedConstructs\DisallowedBacktickRule :
72- phpstan.rules.rule : %strictRules.disallowedConstructs %
80+ phpstan.rules.rule : %strictRules.disallowedBacktick %
7381PHPStan\Rules\DisallowedConstructs\DisallowedEmptyRule :
74- phpstan.rules.rule : %strictRules.disallowedConstructs %
82+ phpstan.rules.rule : %strictRules.disallowedEmpty %
7583PHPStan\Rules\DisallowedConstructs\DisallowedImplicitArrayCreationRule :
76- phpstan.rules.rule : %strictRules.disallowedConstructs %
84+ phpstan.rules.rule : %strictRules.disallowedImplicitArrayCreation %
7785PHPStan\Rules\DisallowedConstructs\DisallowedShortTernaryRule :
78- phpstan.rules.rule : %strictRules.disallowedConstructs %
86+ phpstan.rules.rule : %strictRules.disallowedShortTernary %
7987PHPStan\Rules\ForeachLoop\OverwriteVariablesWithForeachRule :
8088phpstan.rules.rule : %strictRules.overwriteVariablesWithLoop%
8189PHPStan\Rules\ForLoop\OverwriteVariablesWithForLoopInitRule :
0 commit comments