From 2331fc92f649b08a49fb9e271ab0377c54f07ee1 Mon Sep 17 00:00:00 2001 From: Siad Ardroumli Date: Sun, 16 Mar 2014 13:23:37 +0100 Subject: [PATCH] Fixed method call. Related to https://github.com/phpDocumentor/phpDocumentor2/pull/1145 --- src/phpDocumentor/Reflection/DocBlock/Tag/ExampleTag.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phpDocumentor/Reflection/DocBlock/Tag/ExampleTag.php b/src/phpDocumentor/Reflection/DocBlock/Tag/ExampleTag.php index 9173de4..0e163ea 100644 --- a/src/phpDocumentor/Reflection/DocBlock/Tag/ExampleTag.php +++ b/src/phpDocumentor/Reflection/DocBlock/Tag/ExampleTag.php @@ -56,7 +56,7 @@ class ExampleTag extends SourceTag $filePath = '"' . $this->filePath . '"'; } - $this->content = $filePath . ' ' . $this->getContent(); + $this->content = $filePath . ' ' . parent::getContent(); } return $this->content;