radarrplexorganizrnginxsonarrdashboardserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpc
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.
27 lines
562 B
27 lines
562 B
<?php
|
|
|
|
namespace Http\Client\Common;
|
|
|
|
use Http\Client\HttpAsyncClient;
|
|
use Http\Client\HttpClient;
|
|
|
|
/**
|
|
* Emulates an async HTTP client.
|
|
*
|
|
* This should be replaced by an anonymous class in PHP 7.
|
|
*
|
|
* @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
|
|
*/
|
|
class EmulatedHttpAsyncClient implements HttpClient, HttpAsyncClient
|
|
{
|
|
use HttpAsyncClientEmulator;
|
|
use HttpClientDecorator;
|
|
|
|
/**
|
|
* @param HttpClient $httpClient
|
|
*/
|
|
public function __construct(HttpClient $httpClient)
|
|
{
|
|
$this->httpClient = $httpClient;
|
|
}
|
|
}
|
|
|