mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37: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);
|
||
|
}
|
||
|
}
|