Neos\ContentRepository\Migration\Transformations\ChangePropertyValue::isTransformable PHP Method

isTransformable() public method

If the given node has the property this transformation should work on, this returns TRUE.
public isTransformable ( NodeData $node ) : boolean
$node Neos\ContentRepository\Domain\Model\NodeData
return boolean
    public function isTransformable(NodeData $node)
    {
        return $node->hasProperty($this->propertyName);
    }