Skip to content

Commit 7b2fd6c

Browse files
authored
Merge branch refs/heads/1.12.x into 2.1.x
2 parents f9eeeb5 + db46c94 commit 7b2fd6c

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
@@ -107,6 +107,7 @@ public function processNode(Node $node, Scope $scope): array
107107
if (
108108
$this->phpVersion->supportsOverrideAttribute()
109109
&& $this->checkMissingOverrideMethodAttribute
110+
&& !$scope->isInTrait()
110111
&& !$this->hasOverrideAttribute($node->getOriginalNode())
111112
) {
112113
$messages[] = RuleErrorBuilder::message(sprintf(

tests/PHPStan/Rules/Methods/OverridingMethodRuleTest.php

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

804+
public function testBug12471(): void
805+
{
806+
if (PHP_VERSION_ID < 80300) {
807+
$this->markTestSkipped('Test requires PHP 8.3.');
808+
}
809+
810+
$this->checkMissingOverrideMethodAttribute = true;
811+
$this->phpVersionId = PHP_VERSION_ID;
812+
$this->analyse([__DIR__ . '/data/bug-12471.php'], []);
813+
}
814+
804815
public function testBug10165(): void
805816
{
806817
$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)