mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 20:17:14 +01:00
23 lines
438 B
PHP
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);
|
|
}
|
|
}
|