Skip to content

Commit b5f1cae

Browse files
Do not report constructor unused parameter if implemented interface has a constructor
1 parent c533a6e commit b5f1cae

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

src/Rules/Classes/UnusedConstructorParametersRule.php

+7-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
use function array_values;
1717
use function count;
1818
use function sprintf;
19-
use function strtolower;
2019

2120
/**
2221
* @implements Rule<InClassMethodNode>
@@ -37,7 +36,7 @@ public function processNode(Node $node, Scope $scope): array
3736
{
3837
$method = $node->getMethodReflection();
3938
$originalNode = $node->getOriginalNode();
40-
if (strtolower($method->getName()) !== '__construct' || $originalNode->stmts === null) {
39+
if (!$method->isConstructor() || $originalNode->stmts === null) {
4140
return [];
4241
}
4342

@@ -48,6 +47,12 @@ public function processNode(Node $node, Scope $scope): array
4847
return [];
4948
}
5049

50+
foreach ($node->getClassReflection()->getInterfaces() as $interface) {
51+
if ($interface->hasConstructor()) {
52+
return [];
53+
}
54+
}
55+
5156
$message = sprintf(
5257
'Constructor of class %s has an unused parameter $%%s.',
5358
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)