PhpSpec\Process\ReRunner\WindowsPassthruReRunner::isSupported PHP Method

isSupported() public method

public isSupported ( ) : boolean
return boolean
    public function isSupported()
    {
        return php_sapi_name() == 'cli' && $this->getExecutablePath() && function_exists('passthru') && stripos(PHP_OS, "win") === 0;
    }