Neos\Flow\Reflection\PropertyReflection::isTaggedWith PHP Méthode

isTaggedWith() public méthode

Checks if the doc comment of this property is tagged with the specified tag
public isTaggedWith ( string $tag ) : boolean
$tag string Tag name to check for
Résultat boolean TRUE if such a tag has been defined, otherwise FALSE
    public function isTaggedWith($tag)
    {
        $result = $this->getDocCommentParser()->isTaggedWith($tag);
        return $result;
    }