Neos\Neos\Fusion\Helper\CachingHelper::nodeTypeTag PHP Method

nodeTypeTag() public method

Generate an @cache entry tag for a node type A cache entry with this tag will be flushed whenever a node (for any variant) that is of the given node type (including inheritance) is updated.
public nodeTypeTag ( NodeType $nodeType ) : string
$nodeType Neos\ContentRepository\Domain\Model\NodeType
return string
    public function nodeTypeTag(NodeType $nodeType)
    {
        return 'NodeType_' . $nodeType->getName();
    }