Skip to content

Commit abf9928

Browse files
committed
run rector
1 parent a9513c1 commit abf9928

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/NodeAnalyzer/TestsNodeAnalyzer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ public function isTestClassMethod(ClassMethod $classMethod): bool
5858
return true;
5959
}
6060

61-
foreach ($classMethod->getAttrGroups() as $attrGroup) {
62-
foreach ($attrGroup->attrs as $attribute) {
61+
foreach ($classMethod->getAttrGroups() as $attributeGroup) {
62+
foreach ($attributeGroup->attrs as $attribute) {
6363
if ($attribute->name->toString() === 'PHPUnit\\Framework\\Attributes\\Test') {
6464
return true;
6565
}

0 commit comments

Comments
 (0)