PhpSpec\Process\ReRunner\WindowsPassthruReRunner::isSupported PHP 메소드

isSupported() 공개 메소드

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