Skip to content

Commit d6c0de2

Browse files
committed
fixed CS
1 parent 359e1c7 commit d6c0de2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Symfony/Component/HttpClient/CachingHttpClient.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
use Symfony\Component\HttpClient\Response\MockResponse;
1616
use Symfony\Component\HttpClient\Response\ResponseStream;
1717
use Symfony\Component\HttpFoundation\Request;
18-
use Symfony\Component\HttpFoundation\Response;
1918
use Symfony\Component\HttpKernel\HttpCache\HttpCache;
2019
use Symfony\Component\HttpKernel\HttpCache\StoreInterface;
2120
use Symfony\Component\HttpKernel\HttpClientKernel;
@@ -43,7 +42,7 @@ class CachingHttpClient implements HttpClientInterface
4342
public function __construct(HttpClientInterface $client, StoreInterface $store, array $defaultOptions = [], LoggerInterface $logger = null)
4443
{
4544
if (!class_exists(HttpClientKernel::class)) {
46-
throw new \LogicException(sprintf('Using "%s" requires that the HttpKernel component version 4.3 or higher is installed, try running "composer require symfony/http-kernel:^4.3".', __CLASS__));
45+
throw new \LogicException(sprintf('Using "%s" requires that the HttpKernel component version 4.3 or higher is installed, try running "composer require symfony/http-kernel:^4.3".', __CLASS__));
4746
}
4847

4948
$this->client = $client;

0 commit comments

Comments
 (0)