Neos\Neos\TypoScript\Helper\CachingHelper::nodeTag PHP Метод

nodeTag() публичный Метод

Generate a @cache entry tag for a single node, array of nodes or a FlowQuery result A cache entry with this tag will be flushed whenever one of the given nodes (for any variant) is updated.
public nodeTag ( mixed $nodes ) : array
$nodes mixed (A single Node or array or \Traversable of Nodes)
Результат array
    public function nodeTag($nodes)
    {
        return $this->convertArrayOfNodesToArrayOfNodeIdentifiersWithPrefix($nodes, 'Node');
    }