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

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

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