Skip to content

Commit e182c06

Browse files
committed
Check unresolvable types in @phpstan-self-out
1 parent 0dfd821 commit e182c06

File tree

4 files changed

+39
-3
lines changed

4 files changed

+39
-3
lines changed

src/PhpDoc/StubValidator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ private function getRuleRegistry(Container $container): RuleRegistry
201201
$container->getParameter('featureToggles')['invalidPhpDocTagLine'],
202202
),
203203
new IncompatibleParamImmediatelyInvokedCallableRule($fileTypeMapper),
204-
new IncompatibleSelfOutTypeRule(),
204+
new IncompatibleSelfOutTypeRule($unresolvableTypeHelper),
205205
new IncompatibleClassConstantPhpDocTypeRule($genericObjectTypeCheck, $unresolvableTypeHelper),
206206
new InvalidThrowsPhpDocValueRule($fileTypeMapper),
207207

src/Rules/PhpDoc/IncompatibleSelfOutTypeRule.php

+13-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
final class IncompatibleSelfOutTypeRule implements Rule
1818
{
1919

20+
public function __construct(private UnresolvableTypeHelper $unresolvableTypeHelper)
21+
{
22+
}
23+
2024
public function getNodeType(): string
2125
{
2226
return InClassMethodNode::class;
@@ -39,7 +43,7 @@ public function processNode(Node $node, Scope $scope): array
3943
$errors[] = RuleErrorBuilder::message(sprintf(
4044
'Self-out type %s of method %s::%s is not subtype of %s.',
4145
$selfOutType->describe(VerbosityLevel::precise()),
42-
$classReflection->getName(),
46+
$classReflection->getDisplayName(),
4347
$method->getName(),
4448
$classType->describe(VerbosityLevel::precise()),
4549
))->identifier('selfOut.type')->build();
@@ -51,6 +55,14 @@ public function processNode(Node $node, Scope $scope): array
5155
->build();
5256
}
5357

58+
if ($this->unresolvableTypeHelper->containsUnresolvableType($selfOutType)) {
59+
$errors[] = RuleErrorBuilder::message(sprintf(
60+
'PHPDoc tag @phpstan-self-out for method %s::%s() contains unresolvable type.',
61+
$classReflection->getDisplayName(),
62+
$method->getName(),
63+
))->identifier('parameter.unresolvableType')->build();
64+
}
65+
5466
return $errors;
5567
}
5668

tests/PHPStan/Rules/PhpDoc/IncompatibleSelfOutTypeRuleTest.php

+9-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class IncompatibleSelfOutTypeRuleTest extends RuleTestCase
1313

1414
protected function getRule(): Rule
1515
{
16-
return new IncompatibleSelfOutTypeRule();
16+
return new IncompatibleSelfOutTypeRule(new UnresolvableTypeHelper());
1717
}
1818

1919
public function testRule(): void
@@ -31,6 +31,14 @@ public function testRule(): void
3131
'PHPDoc tag @phpstan-self-out is not supported above static method IncompatibleSelfOutType\Foo::selfOutStatic().',
3232
38,
3333
],
34+
[
35+
'PHPDoc tag @phpstan-self-out for method IncompatibleSelfOutType\Foo::doFoo() contains unresolvable type.',
36+
46,
37+
],
38+
[
39+
'PHPDoc tag @phpstan-self-out for method IncompatibleSelfOutType\Foo::doBar() contains unresolvable type.',
40+
54,
41+
],
3442
]);
3543
}
3644

tests/PHPStan/Rules/PhpDoc/data/incompatible-self-out-type.php

+16
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,20 @@ public static function selfOutStatic(): void
4040

4141
}
4242

43+
/**
44+
* @phpstan-self-out int&string
45+
*/
46+
public function doFoo(): void
47+
{
48+
49+
}
50+
51+
/**
52+
* @phpstan-self-out self<int&string>
53+
*/
54+
public function doBar(): void
55+
{
56+
57+
}
58+
4359
}

0 commit comments

Comments
 (0)