Skip to content

Commit

Permalink
Fix a weird bug - the previous argument was lower-case (iteratoraggre…
Browse files Browse the repository at this point in the history
…gate)
  • Loading branch information
ondrejmirtes committed Feb 26, 2021
1 parent dfcb87e commit ec8912c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public function getClass(string $className): ClassReflection
new ReflectionClass($reflectionClass),
null,
null,
$this->stubPhpDocProvider->findClassPhpDoc($className)
$this->stubPhpDocProvider->findClassPhpDoc($reflectionClass->getName())
);

$this->classReflections[$reflectionClassName] = $classReflection;
Expand Down

0 comments on commit ec8912c

Please sign in to comment.