Skip to content

Commit 14e0d1e

Browse files
Do not report constructor unused parameter if class implements an Interface that defines a constructor
1 parent eb0e0bc commit 14e0d1e

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

src/Rules/Classes/UnusedConstructorParametersRule.php

+6
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ public function processNode(Node $node, Scope $scope): array
4545
return [];
4646
}
4747

48+
foreach ($node->getClassReflection()->getInterfaces() as $interface) {
49+
if ($interface->hasMethod('__construct')) {
50+
return [];
51+
}
52+
}
53+
4854
$message = sprintf(
4955
'Constructor of class %s has an unused parameter $%%s.',
5056
SprintfHelper::escapeFormatString($node->getClassReflection()->getDisplayName()),

tests/PHPStan/Rules/Classes/UnusedConstructorParametersRuleTest.php

+5
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,9 @@ public function testBug10865(): void
6666
$this->analyse([__DIR__ . '/data/bug-10865.php'], []);
6767
}
6868

69+
public function testBug11454(): void
70+
{
71+
$this->analyse([__DIR__ . '/data/bug-11454.php'], []);
72+
}
73+
6974
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php declare(strict_types = 1);
2+
3+
namespace Bug11454;
4+
5+
interface ConstructorInterface
6+
{
7+
public function __construct(string $a);
8+
}
9+
10+
class Foo implements ConstructorInterface {
11+
public function __construct(string $a)
12+
{
13+
}
14+
}

0 commit comments

Comments
 (0)