We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 81b3092 + 2e89031 commit 2eeae7cCopy full SHA for 2eeae7c
src/IntercomClient.php
@@ -4,7 +4,6 @@
4
5
use GuzzleHttp\Client;
6
use GuzzleHttp\Psr7\Response;
7
-use function GuzzleHttp\Psr7\stream_for;
8
use Psr\Http\Message\ResponseInterface;
9
10
class IntercomClient
@@ -207,7 +206,7 @@ private function handleResponse(Response $response)
207
206
{
208
$this->setRateLimitDetails($response);
209
210
- $stream = stream_for($response->getBody());
+ $stream = \GuzzleHttp\Psr7\stream_for($response->getBody());
211
$data = json_decode($stream);
212
return $data;
213
}
0 commit comments