Skip to content

Commit 66a7d3b

Browse files
committed
Merge pull request phpDocumentor#31 from siad007/patch-1
Fixed method call.
2 parents b1922e0 + 2331fc9 commit 66a7d3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/phpDocumentor/Reflection/DocBlock/Tag/ExampleTag.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function getContent()
5656
$filePath = '"' . $this->filePath . '"';
5757
}
5858

59-
$this->content = $filePath . ' ' . $this->getContent();
59+
$this->content = $filePath . ' ' . parent::getContent();
6060
}
6161

6262
return $this->content;

0 commit comments

Comments
 (0)