PhpCsFixer\DocBlock\Annotation::getTag PHP Method

getTag() public method

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