phpDocumentor\Reflection\DocBlock\Tag::getParsedDescription PHP Method

getParsedDescription() public method

Gets the parsed text of this description.
public getParsedDescription ( ) : array
return array An array of strings and tag objects, in the order they occur within the description.
    public function getParsedDescription()
    {
        if (null === $this->parsedDescription) {
            $description = new Description($this->description, $this->docblock);
            $this->parsedDescription = $description->getParsedContents();
        }
        return $this->parsedDescription;
    }