PhpSpec\Process\ReRunner\PcntlReRunner::reRunSuite PHP Method

reRunSuite() public method

Kills the current process and starts a new one
public reRunSuite ( )
    public function reRunSuite()
    {
        $args = $_SERVER['argv'];
        $env = $this->executionContext ? $this->executionContext->asEnv() : array();
        pcntl_exec($this->getExecutablePath(), $args, array_merge($env, $_SERVER));
    }