Skip to content

Commit 910e2c8

Browse files
committed
Update doc blocks; need to pass linters!
1 parent e34779e commit 910e2c8

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/Contract/Http.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ interface Http
1010
/**
1111
* Creates default http client with appropriate authorization configuration.
1212
*
13-
* @return GuzzleHttp\Client
13+
* @return \GuzzleHttp\Client
1414
*/
1515
public function createDefaultHttpClient();
1616

1717
/**
1818
* Returns the yelp client's http client to the given http client. Client.
1919
*
20-
* @return GuzzleHttp\Client|null
20+
* @return \GuzzleHttp\Client|null
2121
*/
2222
public function getHttpClient();
2323

@@ -30,7 +30,7 @@ public function getHttpClient();
3030
* @param string|resource|StreamInterface $body Message body.
3131
* @param string $version HTTP protocol version.
3232
*
33-
* @return GuzzleHttp\Psr7\Request
33+
* @return \GuzzleHttp\Psr7\Request
3434
*/
3535
public function getRequest(
3636
$method,
@@ -46,15 +46,15 @@ public function getRequest(
4646
* WARNING: This method does not attempt to catch exceptions caused by HTTP
4747
* errors! It is recommended to wrap this method in a try/catch block.
4848
*
49-
* @param Psr\Http\Message\RequestInterface $request
50-
* @return Psr\Http\Message\ResponseInterface
49+
* @param \Psr\Http\Message\RequestInterface $request
50+
* @return \Psr\Http\Message\ResponseInterface
5151
*/
5252
public function getResponse(RequestInterface $request);
5353

5454
/**
5555
* Updates the yelp client's http client to the given http client. Client.
5656
*
57-
* @param GuzzleHttp\Client $client
57+
* @param \GuzzleHttp\Client $client
5858
*
5959
* @return mixed
6060
*/

src/v3/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function __construct(array $options = array())
4949
/**
5050
* Creates default http client with appropriate authorization configuration.
5151
*
52-
* @return GuzzleHttp\Client
52+
* @return \GuzzleHttp\Client
5353
*/
5454
public function createDefaultHttpClient()
5555
{

0 commit comments

Comments
 (0)