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

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

Returns TRUE if the given node does not yet have the new name.
public isTransformable ( NodeData $node ) : boolean
$node Neos\ContentRepository\Domain\Model\NodeData
Результат boolean
    public function isTransformable(NodeData $node)
    {
        return $node->getName() !== $this->newName;
    }