TQ\Svn\Cli\Binary::locateBinary PHP Method

locateBinary() public static method

Try to find the SVN binary on the system
public static locateBinary ( ) : string
return string
    public static function locateBinary()
    {
        if (!self::isWindows()) {
            $result = Call::create('which svn')->execute();
            return $result->getStdOut();
        }
        return '';
    }