sonarrradarrplexorganizrnginxdashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboard
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
631 B
32 lines
631 B
<?php
|
|
|
|
namespace Http\Client\Common;
|
|
|
|
use Psr\Http\Message\RequestInterface;
|
|
|
|
/**
|
|
* Emulates an HTTP Client in an HTTP Async Client.
|
|
*
|
|
* @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
|
|
*/
|
|
trait HttpClientEmulator
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @see HttpClient::sendRequest
|
|
*/
|
|
public function sendRequest(RequestInterface $request)
|
|
{
|
|
$promise = $this->sendAsyncRequest($request);
|
|
|
|
return $promise->wait();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* @see HttpAsyncClient::sendAsyncRequest
|
|
*/
|
|
abstract public function sendAsyncRequest(RequestInterface $request);
|
|
}
|
|
|