| 1 | <?php |
||
| 12 | trait HttpClientEmulator |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * {@inheritdoc} |
||
| 16 | * |
||
| 17 | * @see HttpClient::sendRequest |
||
| 18 | */ |
||
| 19 | 2 | public function sendRequest(RequestInterface $request) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | * |
||
| 29 | * @see HttpAsyncClient::sendAsyncRequest |
||
| 30 | */ |
||
| 31 | abstract public function sendAsyncRequest(RequestInterface $request); |
||
| 32 | } |
||
| 33 |