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

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

Returns TRUE if the given node has a property with the name to work on and does not yet have a property with the name to rename that property to.
public isTransformable ( NodeData $node ) : boolean
$node Neos\ContentRepository\Domain\Model\NodeData
Результат boolean
    public function isTransformable(NodeData $node)
    {
        return $node->hasProperty($this->oldPropertyName) && !$node->hasProperty($this->newPropertyName);
    }