Skip to content

Commit 7fc5ab8

Browse files
committed
StubValidator - added missing rules
1 parent 580a6ad commit 7fc5ab8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/PhpDoc/StubValidator.php

+4
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,11 @@
5454
use PHPStan\Rules\Methods\OverridingMethodRule;
5555
use PHPStan\Rules\MissingTypehintCheck;
5656
use PHPStan\Rules\PhpDoc\GenericCallableRuleHelper;
57+
use PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule;
5758
use PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule;
5859
use PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule;
5960
use PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule;
61+
use PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule;
6062
use PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule;
6163
use PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule;
6264
use PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule;
@@ -199,6 +201,8 @@ private function getRuleRegistry(Container $container): RuleRegistry
199201
$container->getParameter('featureToggles')['invalidPhpDocTagLine'],
200202
),
201203
new IncompatibleParamImmediatelyInvokedCallableRule($fileTypeMapper),
204+
new IncompatibleSelfOutTypeRule(),
205+
new IncompatibleClassConstantPhpDocTypeRule($genericObjectTypeCheck, $unresolvableTypeHelper),
202206
new InvalidThrowsPhpDocValueRule($fileTypeMapper),
203207

204208
// level 6

0 commit comments

Comments
 (0)