Neos\ContentRepository\Migration\Filters\IsRemoved::matches PHP Method

matches() public method

Returns TRUE if the given node is removed
public matches ( NodeData $node ) : boolean
$node Neos\ContentRepository\Domain\Model\NodeData
return boolean
    public function matches(NodeData $node)
    {
        return $node->isRemoved();
    }
IsRemoved