phpDocumentor\Reflection\DocBlock\Description::setContent PHP Method

setContent() public method

Sets the text of this description.
public setContent ( string $content )
$content string The new text of this description.
    public function setContent($content)
    {
        $this->contents = trim($content);
        $this->parsedContents = null;
        return $this;
    }