Skip to content

Commit

Permalink
Update doc blocks; need to pass linters!
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenmaguire committed Feb 10, 2018
1 parent e34779e commit 910e2c8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/Contract/Http.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ interface Http
/**
* Creates default http client with appropriate authorization configuration.
*
* @return GuzzleHttp\Client
* @return \GuzzleHttp\Client
*/
public function createDefaultHttpClient();

/**
* Returns the yelp client's http client to the given http client. Client.
*
* @return GuzzleHttp\Client|null
* @return \GuzzleHttp\Client|null
*/
public function getHttpClient();

Expand All @@ -30,7 +30,7 @@ public function getHttpClient();
* @param string|resource|StreamInterface $body Message body.
* @param string $version HTTP protocol version.
*
* @return GuzzleHttp\Psr7\Request
* @return \GuzzleHttp\Psr7\Request
*/
public function getRequest(
$method,
Expand All @@ -46,15 +46,15 @@ public function getRequest(
* WARNING: This method does not attempt to catch exceptions caused by HTTP
* errors! It is recommended to wrap this method in a try/catch block.
*
* @param Psr\Http\Message\RequestInterface $request
* @return Psr\Http\Message\ResponseInterface
* @param \Psr\Http\Message\RequestInterface $request
* @return \Psr\Http\Message\ResponseInterface
*/
public function getResponse(RequestInterface $request);

/**
* Updates the yelp client's http client to the given http client. Client.
*
* @param GuzzleHttp\Client $client
* @param \GuzzleHttp\Client $client
*
* @return mixed
*/
Expand Down
2 changes: 1 addition & 1 deletion src/v3/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function __construct(array $options = array())
/**
* Creates default http client with appropriate authorization configuration.
*
* @return GuzzleHttp\Client
* @return \GuzzleHttp\Client
*/
public function createDefaultHttpClient()
{
Expand Down

0 comments on commit 910e2c8

Please sign in to comment.