@@ -10,14 +10,14 @@ interface Http
10
10
/**
11
11
* Creates default http client with appropriate authorization configuration.
12
12
*
13
- * @return GuzzleHttp\Client
13
+ * @return \ GuzzleHttp\Client
14
14
*/
15
15
public function createDefaultHttpClient ();
16
16
17
17
/**
18
18
* Returns the yelp client's http client to the given http client. Client.
19
19
*
20
- * @return GuzzleHttp\Client|null
20
+ * @return \ GuzzleHttp\Client|null
21
21
*/
22
22
public function getHttpClient ();
23
23
@@ -30,7 +30,7 @@ public function getHttpClient();
30
30
* @param string|resource|StreamInterface $body Message body.
31
31
* @param string $version HTTP protocol version.
32
32
*
33
- * @return GuzzleHttp\Psr7\Request
33
+ * @return \ GuzzleHttp\Psr7\Request
34
34
*/
35
35
public function getRequest (
36
36
$ method ,
@@ -46,15 +46,15 @@ public function getRequest(
46
46
* WARNING: This method does not attempt to catch exceptions caused by HTTP
47
47
* errors! It is recommended to wrap this method in a try/catch block.
48
48
*
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
51
51
*/
52
52
public function getResponse (RequestInterface $ request );
53
53
54
54
/**
55
55
* Updates the yelp client's http client to the given http client. Client.
56
56
*
57
- * @param GuzzleHttp\Client $client
57
+ * @param \ GuzzleHttp\Client $client
58
58
*
59
59
* @return mixed
60
60
*/
0 commit comments