Fixed method call.

Related to https://github.com/phpDocumentor/phpDocumentor2/pull/1145
This commit is contained in:
Siad Ardroumli
2014-03-16 13:23:37 +01:00
parent 54c707b480
commit 832559be31
@@ -56,7 +56,7 @@ class ExampleTag extends SourceTag
$filePath = '"' . $this->filePath . '"'; $filePath = '"' . $this->filePath . '"';
} }
$this->content = $filePath . ' ' . $this->getContent(); $this->content = $filePath . ' ' . parent::getContent();
} }
return $this->content; return $this->content;