phpDocumentor\Reflection\DocBlock\Tag::setDescription PHP 메소드

setDescription() 공개 메소드

Sets the description component of this tag.
public setDescription ( string $description )
$description string The new description component of this tag.
    public function setDescription($description)
    {
        $this->content = null;
        $this->parsedDescription = null;
        $this->description = trim($description);
        return $this;
    }