From b78f1dffc2f74d058d4920a8907a87ae74577ba5 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 22 Mar 2021 10:43:50 +0100 Subject: [PATCH] [HttpClient] remove using $http_response_header --- src/Symfony/Component/HttpClient/Response/NativeResponse.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpClient/Response/NativeResponse.php b/src/Symfony/Component/HttpClient/Response/NativeResponse.php index a3566aea32..e87402f0ad 100644 --- a/src/Symfony/Component/HttpClient/Response/NativeResponse.php +++ b/src/Symfony/Component/HttpClient/Response/NativeResponse.php @@ -137,7 +137,7 @@ final class NativeResponse implements ResponseInterface // Send request and follow redirects when needed $this->handle = $h = fopen($url, 'r', false, $this->context); - self::addResponseHeaders($http_response_header, $this->info, $this->headers, $this->info['debug']); + self::addResponseHeaders(stream_get_meta_data($h)['wrapper_data'], $this->info, $this->headers, $this->info['debug']); $url = ($this->resolveRedirect)($this->multi, $this->headers['location'][0] ?? null, $this->context); if (null === $url) {