We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1096bd2 commit c7e03f6Copy full SHA for c7e03f6
packages/leanstorage/LeanStorageClient.php
@@ -63,7 +63,7 @@ public function request(Request $request): PromiseInterface
63
64
return $this->httpClient->request($request->getMethod(), $request->getPath(), $options + $this->options)
65
->then(static function (ResponseInterface $response) {
66
- $response = $response->toArray();
+ $response = $response->toArray(false);
67
68
if (isset($response['error'])) {
69
throw RequestException::fromResponse($response);
0 commit comments