From 6eddb52333c3a974f5a95caf85c711c50c53f0ad Mon Sep 17 00:00:00 2001 From: Robin Chalas Date: Tue, 26 Mar 2019 01:54:03 +0100 Subject: [PATCH] [HttpClient] Fix missing use statement --- src/Symfony/Component/HttpClient/Response/ResponseTrait.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Component/HttpClient/Response/ResponseTrait.php b/src/Symfony/Component/HttpClient/Response/ResponseTrait.php index 7429547293..cc8c7b439f 100644 --- a/src/Symfony/Component/HttpClient/Response/ResponseTrait.php +++ b/src/Symfony/Component/HttpClient/Response/ResponseTrait.php @@ -13,6 +13,7 @@ namespace Symfony\Component\HttpClient\Response; use Symfony\Component\HttpClient\Chunk\DataChunk; use Symfony\Component\HttpClient\Chunk\ErrorChunk; +use Symfony\Component\HttpClient\Chunk\FirstChunk; use Symfony\Component\HttpClient\Chunk\LastChunk; use Symfony\Component\HttpClient\Exception\ClientException; use Symfony\Component\HttpClient\Exception\JsonException;