Skip to content

Commit

Permalink
Fix filename that isn't a valid file issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Jan 11, 2020
1 parent 8f3ef5e commit d279fe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Reflection/ClassReflection.php
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@ private function getResolvedPhpDoc(): ?ResolvedPhpDocBlock
return $this->stubPhpDocBlock;
}

$fileName = $this->reflection->getFileName();
$fileName = $this->getFileName();
if ($fileName === false) {
return null;
}
Expand Down

0 comments on commit d279fe5

Please sign in to comment.