Merge pull request #31 from siad007/patch-1

Fixed method call.
This commit is contained in:
Mike van Riel
2014-03-16 13:31:01 +01:00
@@ -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;