Fixes ACCOUNTS-5G9. Manually cast Guzzle response to string

This commit is contained in:
ErickSkrauch 2019-05-13 21:00:17 +03:00
parent a9453aae67
commit 73988855c4

View File

@ -26,7 +26,7 @@ class Api {
return null;
}
return json_decode($response->getBody(), true);
return json_decode($response->getBody()->getContents(), true);
}
public function setClient(ClientInterface $client): void {