Skip to content

Commit 058e74f

Browse files
committed
Fix internal error
1 parent 934d68e commit 058e74f

File tree

3 files changed

+35
-1
lines changed

3 files changed

+35
-1
lines changed

src/Reflection/ClassReflection.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1587,7 +1587,7 @@ public function getTraitContextResolvedPhpDoc(self $implementingClass): ?Resolve
15871587
if (!$this->isTrait()) {
15881588
throw new ShouldNotHappenException();
15891589
}
1590-
if (!$implementingClass->isClass()) {
1590+
if ($implementingClass->isTrait()) {
15911591
throw new ShouldNotHappenException();
15921592
}
15931593
$fileName = $this->getFileName();

tests/PHPStan/Rules/Classes/MethodTagTraitUseRuleTest.php

+16
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
use PHPStan\Rules\PhpDoc\UnresolvableTypeHelper;
1111
use PHPStan\Rules\Rule as TRule;
1212
use PHPStan\Testing\RuleTestCase;
13+
use const PHP_VERSION_ID;
1314

1415
/**
1516
* @extends RuleTestCase<MethodTagTraitUseRule>
@@ -56,6 +57,21 @@ public function testRule(): void
5657
]);
5758
}
5859

60+
public function testEnum(): void
61+
{
62+
if (PHP_VERSION_ID < 80100) {
63+
self::markTestSkipped('Test requires PHP 8.1.');
64+
}
65+
66+
$this->analyse([__DIR__ . '/data/method-tag-trait-enum.php'], [
67+
[
68+
'PHPDoc tag @method for method MethodTagTraitEnum\Foo::doFoo() return type contains unknown class MethodTagTraitEnum\intt.',
69+
8,
70+
'Learn more at https://phpstan.org/user-guide/discovering-symbols',
71+
],
72+
]);
73+
}
74+
5975
public function testBug11591(): void
6076
{
6177
$this->analyse([__DIR__ . '/data/bug-11591-method-tag.php'], []);
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?php // lint >= 8.1
2+
3+
namespace MethodTagTraitEnum;
4+
5+
/**
6+
* @method intt doFoo()
7+
*/
8+
trait Foo
9+
{
10+
11+
}
12+
13+
enum FooEnum
14+
{
15+
16+
use Foo;
17+
18+
}

0 commit comments

Comments
 (0)