Skip to content

Commit ec8912c

Browse files
committed
Fix a weird bug - the previous argument was lower-case (iteratoraggregate)
1 parent dfcb87e commit ec8912c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Reflection/BetterReflection/BetterReflectionProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public function getClass(string $className): ClassReflection
152152
new ReflectionClass($reflectionClass),
153153
null,
154154
null,
155-
$this->stubPhpDocProvider->findClassPhpDoc($className)
155+
$this->stubPhpDocProvider->findClassPhpDoc($reflectionClass->getName())
156156
);
157157

158158
$this->classReflections[$reflectionClassName] = $classReflection;

0 commit comments

Comments
 (0)