Skip to content

Commit ff0109b

Browse files
committed
Fix docblock for method
1 parent c70036c commit ff0109b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Model/MethodModel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function toLines()
4444
{
4545
$lines = [];
4646
if ($this->docBlock !== null) {
47-
$lines[] = $this->docBlock->render();
47+
$lines = array_merge($lines, $this->docBlock->toLines());
4848
}
4949

5050
$function = '';

0 commit comments

Comments
 (0)