@@ -5,25 +5,36 @@ parameters:
55 addBehaviorExistsClassRule : true
66 tableGetMatchOptionsTypesRule : true
77 ormSelectQueryFindMatchOptionsTypesRule : true
8-
8+ disallowEntityArrayAccessRule : false
9+ getMailerExistsClassRule : true
10+ loadComponentExistsClassRule : true
911parametersSchema :
1012 cakeDC : structure ([
1113 addAssociationExistsTableClassRule : anyOf (bool (), arrayOf (bool ()))
1214 addAssociationMatchOptionsTypesRule : anyOf (bool (), arrayOf (bool ()))
1315 addBehaviorExistsClassRule : anyOf (bool (), arrayOf (bool ()))
1416 tableGetMatchOptionsTypesRule : anyOf (bool (), arrayOf (bool ()))
1517 ormSelectQueryFindMatchOptionsTypesRule : anyOf (bool (), arrayOf (bool ()))
18+ disallowEntityArrayAccessRule : anyOf (bool (), arrayOf (bool ()))
19+ getMailerExistsClassRule : anyOf (bool (), arrayOf (bool ()))
20+ loadComponentExistsClassRule : anyOf (bool (), arrayOf (bool ()))
1621 ])
1722
1823conditionalTags :
1924 CakeDC\PHPStan\Visitor\AddAssociationSetClassNameVisitor :
2025 phpstan.parser.richParserNodeVisitor : %cakeDC.addAssociationExistsTableClassRule%
26+ CakeDC\PHPStan\Rule\Controller\LoadComponentExistsClassRule :
27+ phpstan.rules.rule : %cakeDC.loadComponentExistsClassRule%
2128 CakeDC\PHPStan\Rule\Model\AddAssociationExistsTableClassRule :
2229 phpstan.rules.rule : %cakeDC.addAssociationExistsTableClassRule%
2330 CakeDC\PHPStan\Rule\Model\AddAssociationMatchOptionsTypesRule :
2431 phpstan.rules.rule : %cakeDC.addAssociationMatchOptionsTypesRule%
2532 CakeDC\PHPStan\Rule\Model\AddBehaviorExistsClassRule :
2633 phpstan.rules.rule : %cakeDC.addBehaviorExistsClassRule%
34+ CakeDC\PHPStan\Rule\Model\DisallowEntityArrayAccessRule :
35+ phpstan.rules.rule : %cakeDC.disallowEntityArrayAccessRule%
36+ CakeDC\PHPStan\Rule\Mailer\GetMailerExistsClassRule :
37+ phpstan.rules.rule : %cakeDC.getMailerExistsClassRule%
2738 CakeDC\PHPStan\Rule\Model\TableGetMatchOptionsTypesRule :
2839 phpstan.rules.rule : %cakeDC.tableGetMatchOptionsTypesRule%
2940 CakeDC\PHPStan\Rule\Model\OrmSelectQueryFindMatchOptionsTypesRule :
@@ -32,12 +43,18 @@ conditionalTags:
3243services :
3344 -
3445 class : CakeDC\PHPStan\Visitor\AddAssociationSetClassNameVisitor
46+ -
47+ class : CakeDC\PHPStan\Rule\Controller\LoadComponentExistsClassRule
3548 -
3649 class : CakeDC\PHPStan\Rule\Model\AddAssociationExistsTableClassRule
3750 -
3851 class : CakeDC\PHPStan\Rule\Model\AddAssociationMatchOptionsTypesRule
3952 -
4053 class : CakeDC\PHPStan\Rule\Model\AddBehaviorExistsClassRule
54+ -
55+ class : CakeDC\PHPStan\Rule\Model\DisallowEntityArrayAccessRule
56+ -
57+ class : CakeDC\PHPStan\Rule\Mailer\GetMailerExistsClassRule
4158 -
4259 class : CakeDC\PHPStan\Rule\Model\TableGetMatchOptionsTypesRule
4360 -
0 commit comments