phpDocumentor\Reflection\DocBlock\Tag\ReturnTag::getCotnent PHP 메소드

getCotnent() 공개 메소드

public getCotnent ( )
    public function getCotnent()
    {
        if (null === $this->content) {
            $this->content = "{$this->type} {$this->description}";
        }
        return $this->cotnent;
    }