Skip to content

Commit 40c95ba

Browse files
committed
fix static
1 parent 42c1856 commit 40c95ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Analyzer/ClassMethodAnalyzer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ private function getDocReturnDeclaration(ClassMethod $method)
460460
&& isset($parsedComment['return'])
461461
) {
462462
if ($parsedComment['return'][0] instanceof NullableType) {
463-
$result = '?'.$parsedComment['return'][0]->type;
463+
$result = '?' . $parsedComment['return'][0]->type;
464464
} else {
465465
$result = implode('|', $parsedComment['return']);
466466
}

0 commit comments

Comments
 (0)