TQ\Svn\Cli\Binary::locateBinary PHP Méthode

locateBinary() public static méthode

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