Use parsed types for content

This commit is contained in:
Barry vd. Heuvel
2013-06-08 22:37:52 +02:00
parent d2414cd3dc
commit 3a5d30e027
@@ -36,7 +36,7 @@ class ReturnTag extends Tag
public function getContent()
{
if (null === $this->content) {
$this->content = "{$this->type} {$this->description}";
$this->content = "{$this->getType()} {$this->description}";
}
return $this->content;