Neos\Neos\Fusion\Cache\ContentCacheFlusher::getAllImplementedNodeTypes PHP Method

getAllImplementedNodeTypes() protected method

protected getAllImplementedNodeTypes ( NodeType $nodeType ) : array
$nodeType Neos\ContentRepository\Domain\Model\NodeType
return array
    protected function getAllImplementedNodeTypes(NodeType $nodeType)
    {
        $types = array($nodeType);
        foreach ($nodeType->getDeclaredSuperTypes() as $superType) {
            $types = array_merge($types, $this->getAllImplementedNodeTypes($superType));
        }
        return $types;
    }