for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ClashOfClans\Api;
use GuzzleHttp\Psr7\Response;
class ResponseMediator
{
public static function convertResponseToArray(Response $response)
return json_decode($response->getBody()->getContents(), true);
}