Skip to content

Commit 3a5d30e

Browse files
committed
Use parsed types for content
1 parent d2414cd commit 3a5d30e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Barryvdh/Reflection/DocBlock/Tag/ReturnTag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ReturnTag extends Tag
3636
public function getContent()
3737
{
3838
if (null === $this->content) {
39-
$this->content = "{$this->type} {$this->description}";
39+
$this->content = "{$this->getType()} {$this->description}";
4040
}
4141

4242
return $this->content;

0 commit comments

Comments
 (0)