Skip to content
This repository was archived by the owner on Feb 10, 2024. It is now read-only.

Commit 043e86e

Browse files
committed
Update ParentClassNameCollectingNodeVisitor.php
1 parent 49b2503 commit 043e86e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/NodeVisitor/ParentClassNameCollectingNodeVisitor.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ public function getParentClassNames(): array
4343
$namespacedClassNames = [];
4444
foreach($uniqueParentClassNames as $className) {
4545
try {
46-
$reflection = new \ReflectionClass($className);
47-
if ($reflection->isInternal()) {
46+
$reflectionClass = new \ReflectionClass($className);
47+
if ($reflectionClass->isInternal()) {
4848
continue;
4949
}
5050
$namespacedClassNames[] = $className;

0 commit comments

Comments
 (0)