芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/vendor/php-http/client-common/src/HttpClientEmulator.php
*/ trait HttpClientEmulator { /** * {@inheritdoc} * * @see HttpClient::sendRequest */ public function sendRequest(RequestInterface $request): ResponseInterface { $promise = $this->sendAsyncRequest($request); return $promise->wait(); } /** * {@inheritdoc} * * @see HttpAsyncClient::sendAsyncRequest */ abstract public function sendAsyncRequest(RequestInterface $request); }