PhpCsFixer\DocBlock\Annotation::getTag PHP 메소드

getTag() 공개 메소드

Get the associated tag.
public getTag ( ) : Tag
리턴 Tag
    public function getTag()
    {
        if (null === $this->tag) {
            $this->tag = new Tag($this->lines[0]);
        }
        return $this->tag;
    }