From ca1eac510b7eb5d4c44732187f0a63e3059125a9 Mon Sep 17 00:00:00 2001 From: Jean-Luc Date: Fri, 11 Jul 2025 10:56:14 +0200 Subject: [PATCH] Fix return type of bzdecompress() --- resources/functionMap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/functionMap.php b/resources/functionMap.php index 60f67ce5e2..db3e6ba6cd 100644 --- a/resources/functionMap.php +++ b/resources/functionMap.php @@ -482,7 +482,7 @@ 'bson_encode' => ['string', 'anything'=>'mixed'], 'bzclose' => ['bool', 'bz'=>'resource'], 'bzcompress' => ['string|int', 'source'=>'string', 'blocksize100k='=>'int', 'workfactor='=>'int'], -'bzdecompress' => ['string|false', 'source'=>'string', 'small='=>'int'], +'bzdecompress' => ['string|int|false', 'source'=>'string', 'small='=>'int'], 'bzerrno' => ['int', 'bz'=>'resource'], 'bzerror' => ['array', 'bz'=>'resource'], 'bzerrstr' => ['string', 'bz'=>'resource'],