| 1 | <?php |
||
| 20 | class HTTPClientService implements HTTPClientInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | public function post(string $uri, array $body = [], array $headers = []) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | public function get(string $uri, array $queryParameters = [], array $headers = []) |
||
| 37 | } |
||
| 38 |