Prose\UsingTargetsTable::removeCurrentTestEnvironment PHP Метод

removeCurrentTestEnvironment() публичный Метод

public removeCurrentTestEnvironment ( ) : void
Результат 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();
    }