From 01b3be1fbf6cc95cc25ef820891520e8d533ed05 Mon Sep 17 00:00:00 2001 From: Yoshinari Takaoka Date: Mon, 6 Nov 2023 20:31:32 +0900 Subject: [PATCH 1/2] [PHP 8.3] Return type of ReflectionClass::getStaticProperties() is no longer nullable. --- .../reflectionclass/getstaticproperties.xml | 27 +++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/reference/reflection/reflectionclass/getstaticproperties.xml b/reference/reflection/reflectionclass/getstaticproperties.xml index 16c631ba32f0..30dd3091c096 100644 --- a/reference/reflection/reflectionclass/getstaticproperties.xml +++ b/reference/reflection/reflectionclass/getstaticproperties.xml @@ -9,7 +9,7 @@ &reftitle.description; - public arraynullReflectionClass::getStaticProperties + public arrayReflectionClass::getStaticProperties @@ -26,10 +26,33 @@ &reftitle.returnvalues; - The static properties, as an array, or &null; on failure. + The static properties, as an array. + + &reftitle.changelog; + + + + + &Version; + &Description; + + + + + 8.3.0 + + Return type of ReflectionClass::getStaticProperties + is no longer nullable. + + + + + + + &reftitle.seealso; From 81437c853abcd97a2383b7ad3df6bb1773a68b42 Mon Sep 17 00:00:00 2001 From: Yoshinari Takaoka Date: Wed, 15 Nov 2023 03:24:36 +0900 Subject: [PATCH 2/2] Update reference/reflection/reflectionclass/getstaticproperties.xml Co-authored-by: Gina Peter Banyard --- reference/reflection/reflectionclass/getstaticproperties.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/reflection/reflectionclass/getstaticproperties.xml b/reference/reflection/reflectionclass/getstaticproperties.xml index 30dd3091c096..4ee88db668d7 100644 --- a/reference/reflection/reflectionclass/getstaticproperties.xml +++ b/reference/reflection/reflectionclass/getstaticproperties.xml @@ -44,8 +44,8 @@ 8.3.0 - Return type of ReflectionClass::getStaticProperties - is no longer nullable. + The return type of ReflectionClass::getStaticProperties + has been changed to array from ?array.