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

__construct() public method

If no path is given the class tries to find the correct binary {@see \locateBinary()}
public __construct ( string | null $path = null )
$path string | null The path to the SVN binary or NULL to auto-detect
    public function __construct($path = null)
    {
        if (!$path) {
            $path = self::locateBinary();
        }
        parent::__construct($path);
    }