File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 54
54
use PHPStan \Rules \Methods \OverridingMethodRule ;
55
55
use PHPStan \Rules \MissingTypehintCheck ;
56
56
use PHPStan \Rules \PhpDoc \GenericCallableRuleHelper ;
57
+ use PHPStan \Rules \PhpDoc \IncompatibleClassConstantPhpDocTypeRule ;
57
58
use PHPStan \Rules \PhpDoc \IncompatibleParamImmediatelyInvokedCallableRule ;
58
59
use PHPStan \Rules \PhpDoc \IncompatiblePhpDocTypeRule ;
59
60
use PHPStan \Rules \PhpDoc \IncompatiblePropertyPhpDocTypeRule ;
61
+ use PHPStan \Rules \PhpDoc \IncompatibleSelfOutTypeRule ;
60
62
use PHPStan \Rules \PhpDoc \InvalidPhpDocTagValueRule ;
61
63
use PHPStan \Rules \PhpDoc \InvalidPHPStanDocTagRule ;
62
64
use PHPStan \Rules \PhpDoc \InvalidThrowsPhpDocValueRule ;
@@ -199,6 +201,8 @@ private function getRuleRegistry(Container $container): RuleRegistry
199
201
$ container ->getParameter ('featureToggles ' )['invalidPhpDocTagLine ' ],
200
202
),
201
203
new IncompatibleParamImmediatelyInvokedCallableRule ($ fileTypeMapper ),
204
+ new IncompatibleSelfOutTypeRule (),
205
+ new IncompatibleClassConstantPhpDocTypeRule ($ genericObjectTypeCheck , $ unresolvableTypeHelper ),
202
206
new InvalidThrowsPhpDocValueRule ($ fileTypeMapper ),
203
207
204
208
// level 6
You can’t perform that action at this time.
0 commit comments