Neos\ContentRepository\Migration\Transformations\ChangeNodeType::isTransformable PHP Метод

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

If the given node has the property this transformation should work on, this returns TRUE if the given NodeType is registered with the NodeTypeManager and is not abstract.
public isTransformable ( NodeData $node ) : boolean
$node Neos\ContentRepository\Domain\Model\NodeData
Результат boolean
    public function isTransformable(NodeData $node)
    {
        return $this->nodeTypeManager->hasNodeType($this->newType) && !$this->nodeTypeManager->getNodeType($this->newType)->isAbstract();
    }