Skip to content

Commit db46c94

Browse files
VincentLangletondrejmirtes
authored andcommitted
Disable Override check for traits
1 parent 8a6f7e9 commit db46c94

File tree

3 files changed

+52
-0
lines changed

3 files changed

+52
-0
lines changed

src/Rules/Methods/OverridingMethodRule.php

+1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ public function processNode(Node $node, Scope $scope): array
109109
if (
110110
$this->phpVersion->supportsOverrideAttribute()
111111
&& $this->checkMissingOverrideMethodAttribute
112+
&& !$scope->isInTrait()
112113
&& !$this->hasOverrideAttribute($node->getOriginalNode())
113114
) {
114115
$messages[] = RuleErrorBuilder::message(sprintf(

tests/PHPStan/Rules/Methods/OverridingMethodRuleTest.php

+11
Original file line numberDiff line numberDiff line change
@@ -820,6 +820,17 @@ public function testBug10153(): void
820820
$this->analyse([__DIR__ . '/data/bug-10153.php'], $errors);
821821
}
822822

823+
public function testBug12471(): void
824+
{
825+
if (PHP_VERSION_ID < 80300) {
826+
$this->markTestSkipped('Test requires PHP 8.3.');
827+
}
828+
829+
$this->checkMissingOverrideMethodAttribute = true;
830+
$this->phpVersionId = PHP_VERSION_ID;
831+
$this->analyse([__DIR__ . '/data/bug-12471.php'], []);
832+
}
833+
823834
public function testBug10165(): void
824835
{
825836
$this->phpVersionId = PHP_VERSION_ID;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?php
2+
3+
namespace Bug12471;
4+
5+
trait T
6+
{
7+
public function f():void {}
8+
}
9+
10+
class A {
11+
public function f():void {}
12+
}
13+
14+
class B {
15+
use T;
16+
}
17+
18+
class C extends A {
19+
use T;
20+
}
21+
22+
/** @phpstan-require-extends D */
23+
trait TT
24+
{
25+
public function f():void {}
26+
}
27+
28+
class D {}
29+
30+
class AA extends D {
31+
public function f():void {}
32+
}
33+
34+
class BB extends D {
35+
use TT;
36+
}
37+
38+
class CC extends AA {
39+
use TT;
40+
}

0 commit comments

Comments
 (0)