Jyxo\Svn\Client::checkout PHP Method

checkout() public method

SVN checkout.
public checkout ( string $url, string $path, mixed $params = null, string $user = '', string $password = '' ) : Result
$url string Repository URL
$path string Local working copy path
$params mixed Additional parameters
$user string SVN username
$password string SVN user password
return Result
    public function checkout(string $url, string $path, $params = null, string $user = '', string $password = '') : Result
    {
        return $this->callSvn('checkout', $user, $password, array_merge((array) $url, (array) $params, (array) $path));
    }