From ddc3005eea17cc9eac29bf943979c6d932b3d65e Mon Sep 17 00:00:00 2001 From: Vasil Rangelov Date: Sat, 22 Sep 2012 05:56:37 +0300 Subject: [PATCH] Added doc block to getParsedContents(). --- src/phpDocumentor/Reflection/DocBlock/LongDescription.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/phpDocumentor/Reflection/DocBlock/LongDescription.php b/src/phpDocumentor/Reflection/DocBlock/LongDescription.php index 9a8e5d6..14aa652 100644 --- a/src/phpDocumentor/Reflection/DocBlock/LongDescription.php +++ b/src/phpDocumentor/Reflection/DocBlock/LongDescription.php @@ -58,6 +58,12 @@ class LongDescription implements \Reflector return $this->contents; } + /* + * Returns the parsed text of this description. + * + * @return array An array of strings and tag objects, in the order they + * occur within the description. + */ public function getParsedContents() { return $this->parsedContents;