Jyxo\Svn\Client::update PHP Method

update() public method

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