/** * @param GuzzleClient $http * @param Memcache $memcache */ public function __construct(GuzzleClient $http, Memcache $memcache) { parent::__construct($http); $this->memcache = $memcache; }
public function testGetHttp() { $this->assertSame($this->guzzleClient, $this->client->getGuzzleClient()); }