Bravo3\Orm\Drivers\Filesystem\FilesystemDriver::removeRef PHP Method

removeRef() public method

If the reference does not exist, no action is taken.
public removeRef ( string $key, Ref $ref ) : void
$key string Entity ref key
$ref Bravo3\Orm\Drivers\Common\Ref Reference to remove
return void
    public function removeRef($key, Ref $ref)
    {
        $this->unit_of_work->queueCommand(new Command('remove_index', ['key' => $key, 'value' => (string) $ref]));
    }