Prose\UsingTargetsTable::removeCurrentTestEnvironment PHP Method

removeCurrentTestEnvironment() public method

public removeCurrentTestEnvironment ( ) : void
return void
    public function removeCurrentTestEnvironment()
    {
        // what are we doing?
        $log = usingLog()->startAction("remove current test environment from targets table");
        // get the details to remove
        $testEnvName = $this->st->getTestEnvironmentName();
        // remove it
        usingRuntimeTable($this->entryKey)->removeItem($testEnvName);
        // all done
        $log->endAction();
    }