Neos\Flow\Reflection\DocCommentParser::isTaggedWith PHP 메소드

isTaggedWith() 공개 메소드

Checks if a tag with the given name exists
public isTaggedWith ( string $tagName ) : boolean
$tagName string The tag name to check for
리턴 boolean TRUE the tag exists, otherwise FALSE
    public function isTaggedWith($tagName)
    {
        return isset($this->tags[$tagName]);
    }