sonarrradarrplexorganizrnginxdashboardlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximux
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
581 B
27 lines
581 B
<?php
|
|
|
|
namespace Http\Client\Common;
|
|
|
|
use Http\Client\HttpAsyncClient;
|
|
use Http\Client\HttpClient;
|
|
|
|
/**
|
|
* Emulates an 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 EmulatedHttpClient implements HttpClient, HttpAsyncClient
|
|
{
|
|
use HttpAsyncClientDecorator;
|
|
use HttpClientEmulator;
|
|
|
|
/**
|
|
* @param HttpAsyncClient $httpAsyncClient
|
|
*/
|
|
public function __construct(HttpAsyncClient $httpAsyncClient)
|
|
{
|
|
$this->httpAsyncClient = $httpAsyncClient;
|
|
}
|
|
}
|
|
|