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

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

If the given node has no property this transformation should work on, this returns TRUE.
public isTransformable ( NodeData $node ) : boolean
$node Neos\ContentRepository\Domain\Model\NodeData
Результат boolean
    public function isTransformable(NodeData $node)
    {
        return !$node->hasProperty($this->newPropertyName);
    }