Prose\UsingHostsTable::removeHost PHP Method

removeHost() public method

removeHost
public removeHost ( string $hostId ) : void
$hostId string ID of the host to remove
return void
    public function removeHost($hostId)
    {
        // what are we doing?
        $log = usingLog()->startAction("remove host '{$hostId}' from current test environment hosts table");
        // remove it
        usingRuntimeTableForTargetEnvironment($this->entryKey)->removeItem($hostId);
        // all done
        $log->endAction();
    }
UsingHostsTable