Completed
Push — v3-fusion-support ( 4f8fb5...059121 )
by Steven
03:32
created
src/Tool/HttpTrait.php 1 patch
Doc Comments   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      *
33 33
      * @param  string  $url
34 34
      * @param  array   $parameters
35
-     * @param  array   $options
35
+     * @param  string[]   $options
36 36
      *
37 37
      * @return string
38 38
      */
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      * @param  string|resource|StreamInterface $body Message body.
71 71
      * @param  string $version HTTP protocol version.
72 72
      *
73
-     * @return GuzzleHttp\Psr7\Request
73
+     * @return Request
74 74
      */
75 75
     public function getRequest(
76 76
         $method,
@@ -117,7 +117,6 @@  discard block
 block discarded – undo
117 117
      * Updates query params array to apply yelp specific formatting rules.
118 118
      *
119 119
      * @param  array   $params
120
-     * @param  array   $options
121 120
      *
122 121
      * @return string
123 122
      */
@@ -141,7 +140,7 @@  discard block
 block discarded – undo
141 140
     /**
142 141
      * Makes a request to the Yelp API and returns the response
143 142
      *
144
-     * @param    Psr\Http\Message\RequestInterface $request
143
+     * @param    RequestInterface $request
145 144
      *
146 145
      * @return   stdClass The JSON response from the request
147 146
      * @throws   Stevenmaguire\Yelp\Exception\ClientConfigurationException
@@ -157,9 +156,9 @@  discard block
 block discarded – undo
157 156
     /**
158 157
      * Updates the yelp client's http client to the given http client. Client.
159 158
      *
160
-     * @param GuzzleHttp\Client  $client
159
+     * @param HttpClient  $client
161 160
      *
162
-     * @return  mixed
161
+     * @return  HttpTrait
163 162
      */
164 163
     public function setHttpClient(HttpClient $client)
165 164
     {
Please login to merge, or discard this patch.