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

isTransformable() public method

Returns TRUE, indicating that the given node can be transformed by this transformation.
public isTransformable ( NodeData $node ) : boolean
$node Neos\ContentRepository\Domain\Model\NodeData
return boolean
    public function isTransformable(NodeData $node)
    {
        return true;
    }
AbstractTransformation