This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/HttpClient/HttpClient.php

50 lines
1.5 KiB
PHP
Raw Normal View History

2019-01-27 20:00:39 +00:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\HttpClient;
2019-03-12 16:10:19 +00:00
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
2019-01-27 20:00:39 +00:00
use Symfony\Contracts\HttpClient\HttpClientInterface;
/**
* A factory to instantiate the best possible HTTP client for the runtime.
*
* @author Nicolas Grekas <p@tchwork.com>
*
* @experimental in 4.3
*/
final class HttpClient
{
/**
* @param array $defaultOptions Default requests' options
* @param int $maxHostConnections The maximum number of connections to a single host
*
* @see HttpClientInterface::OPTIONS_DEFAULTS for available options
*/
2019-03-12 16:10:19 +00:00
public static function create(array $defaultOptions = [], LoggerInterface $logger = null, int $maxHostConnections = 6): HttpClientInterface
2019-01-27 20:00:39 +00:00
{
2019-03-12 16:10:19 +00:00
if (null === $logger) {
$logger = new NullLogger();
}
2019-01-27 20:00:39 +00:00
if (\extension_loaded('curl')) {
2019-03-12 16:10:19 +00:00
$logger->debug('Curl extension is enabled. Creating client.', ['client' => CurlHttpClient::class]);
return new CurlHttpClient($defaultOptions, $logger, $maxHostConnections);
2019-01-27 20:00:39 +00:00
}
2019-03-12 16:10:19 +00:00
$logger->debug('Curl extension is disabled. Creating client.', ['client' => NativeHttpClient::class]);
return new NativeHttpClient($defaultOptions, $logger, $maxHostConnections);
2019-01-27 20:00:39 +00:00
}
}