Skip to content

Commit

Permalink
bugfix for major regression that appeared in the latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jmeyering committed Aug 31, 2016
1 parent 09416e5 commit c4896b2
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/ClientAdapters/Adapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,20 @@ public function put($uri = null, array $options = [])
return $this->getClient()->put($uri, $options);
}

/**
* Perform a patch request
*
* @param string $uri
* @param array $options All options for the request, will be passed to the
* client
*
* @return ResponseInterface
*/
public function patch($uri = null, array $options = [])
{
return $this->getClient()->patch($uri, $options);
}

/**
* Perform a delete request
*
Expand Down

0 comments on commit c4896b2

Please sign in to comment.