| 1 | <?php | ||
| 13 | class Guzzle | ||
| 14 | { | ||
| 15 | /** @var Client */ | ||
| 16 | private $client; | ||
| 17 | |||
| 18 | public function __construct(Client $client) | ||
| 22 | |||
| 23 | public function getClient() : Client | ||
| 27 | |||
| 28 | public function getAsync(string $uri, array $options = []) : PromiseInterface | ||
| 32 | |||
| 33 | public function postAsync(string $uri, array $options = []) : PromiseInterface | ||
| 37 | |||
| 38 | public function post(string $uri, array $options = []) : ResponseInterface | ||
| 42 | } |