From 82424473daf03ed79fe117f228956111cd3f873a Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 10 Jul 2024 17:35:55 +0200 Subject: [PATCH] Fix new headers functions in php 8.4 --- resources/functionMap_php84delta.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/functionMap_php84delta.php b/resources/functionMap_php84delta.php index c5b395c292..fe719fce15 100644 --- a/resources/functionMap_php84delta.php +++ b/resources/functionMap_php84delta.php @@ -15,8 +15,8 @@ */ return [ 'new' => [ - 'http_get_last_response_header ' => ['list'], - 'http_clear_last_response_header' => ['void'], + 'http_get_last_response_headers' => ['list|null'], + 'http_clear_last_response_headers' => ['void'], 'mb_lcfirst' => ['string', 'string'=>'string', 'encoding='=>'string'], 'mb_ucfirst' => ['string', 'string'=>'string', 'encoding='=>'string'], ],