| 1 | <?php |
||
| 12 | class GuzzleTransport extends AbstractTransport |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * The Guzzle client. |
||
| 16 | * |
||
| 17 | * @var Client |
||
| 18 | */ |
||
| 19 | protected $client; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Constructor. |
||
| 23 | * |
||
| 24 | * @param ApiCredentials $credentials The API credentials. |
||
| 25 | */ |
||
| 26 | public function __construct(ApiCredentials $credentials) |
||
| 45 | |||
| 46 | /** |
||
| 47 | * {@inheritdoc} |
||
| 48 | */ |
||
| 49 | public function sendRequest($body) |
||
| 67 | } |
||
| 68 |