Rocketeer\Tasks\Check::checkScm PHP Method

checkScm() public method

Check the presence of an SCM on the server.
public checkScm ( ) : boolean
return boolean
    public function checkScm()
    {
        $this->explainer->line('Checking presence of ' . $this->scm->getBinary());
        $results = $this->scm->run('check');
        $this->toOutput($results);
        return $this->getConnection()->status() === 0;
    }