From 24581dfecbf71207e61c17ed0374e90b31c02d54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Thu, 3 Nov 2022 15:08:27 +0100 Subject: [PATCH 1/2] Fix return type of ReflectionExtension::getVersion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- dictionaries/CallMap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dictionaries/CallMap.php b/dictionaries/CallMap.php index cf2acbc252a..f4906d18d77 100644 --- a/dictionaries/CallMap.php +++ b/dictionaries/CallMap.php @@ -11444,7 +11444,7 @@ 'ReflectionExtension::getFunctions' => ['array'], 'ReflectionExtension::getINIEntries' => ['array'], 'ReflectionExtension::getName' => ['string'], -'ReflectionExtension::getVersion' => ['string'], +'ReflectionExtension::getVersion' => ['?string'], 'ReflectionExtension::info' => ['void'], 'ReflectionExtension::isPersistent' => ['bool'], 'ReflectionExtension::isTemporary' => ['bool'], From 8e70aa3a7739cefb2d9aef3f5a3ba1d1bcb37a1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= Date: Mon, 7 Nov 2022 09:12:36 +0100 Subject: [PATCH 2/2] Fix ReflectionExtension::getVersion signature in CallMap_historical.php as well MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- dictionaries/CallMap_historical.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dictionaries/CallMap_historical.php b/dictionaries/CallMap_historical.php index 290bf708754..017ffce9e63 100644 --- a/dictionaries/CallMap_historical.php +++ b/dictionaries/CallMap_historical.php @@ -6071,7 +6071,7 @@ 'ReflectionExtension::getFunctions' => ['array'], 'ReflectionExtension::getINIEntries' => ['array'], 'ReflectionExtension::getName' => ['string'], - 'ReflectionExtension::getVersion' => ['string'], + 'ReflectionExtension::getVersion' => ['?string'], 'ReflectionExtension::info' => ['void'], 'ReflectionExtension::isPersistent' => ['bool'], 'ReflectionExtension::isTemporary' => ['bool'],