Skip to content

Commit 0d4c46c

Browse files
Do not report constructor unused parameter if class implements an Interface that defines a constructor
1 parent 6b0d8c3 commit 0d4c46c

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
@@ -48,6 +48,12 @@ public function processNode(Node $node, Scope $scope): array
4848
return [];
4949
}
5050

51+
foreach ($node->getClassReflection()->getInterfaces() as $interface) {
52+
if ($interface->hasMethod('__construct')) {
53+
return [];
54+
}
55+
}
56+
5157
$message = sprintf(
5258
'Constructor of class %s has an unused parameter $%%s.',
5359
SprintfHelper::escapeFormatString($node->getClassReflection()->getDisplayName()),

tests/PHPStan/Rules/Classes/UnusedConstructorParametersRuleTest.php

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

74+
public function testBug11454(): void
75+
{
76+
$this->analyse([__DIR__ . '/data/bug-11454.php'], []);
77+
}
78+
7479
}
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)