OpenXE/classes/Components/HttpClient/HttpClientFactory.php
2021-05-21 08:49:41 +02:00

23 lines
438 B
PHP

<?php
declare(strict_types=1);
namespace Xentral\Components\HttpClient;
final class HttpClientFactory
{
/**
* @param RequestOptions|null $options
*
* @return HttpClientInterface
*/
public function createClient(RequestOptions $options = null): HttpClientInterface
{
if ($options === null) {
$options = new RequestOptions();
}
return new HttpClient($options);
}
}