Skip to content

Commit d989c87

Browse files
Use isConstructor and hasConstructor functions
1 parent 0d4c46c commit d989c87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Rules/Classes/UnusedConstructorParametersRule.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function processNode(Node $node, Scope $scope): array
3737
{
3838
$method = $node->getMethodReflection();
3939
$originalNode = $node->getOriginalNode();
40-
if (strtolower($method->getName()) !== '__construct' || $originalNode->stmts === null) {
40+
if (!$method->isConstructor() || $originalNode->stmts === null) {
4141
return [];
4242
}
4343

@@ -49,7 +49,7 @@ public function processNode(Node $node, Scope $scope): array
4949
}
5050

5151
foreach ($node->getClassReflection()->getInterfaces() as $interface) {
52-
if ($interface->hasMethod('__construct')) {
52+
if ($interface->hasConstructor()) {
5353
return [];
5454
}
5555
}

0 commit comments

Comments
 (0)