From d7eb4cfdb20d747cbe74aefcb6ebd4c31a092131 Mon Sep 17 00:00:00 2001 From: Marcus Bointon Date: Fri, 25 Aug 2023 00:18:19 +0200 Subject: [PATCH] [ci skip] Add note about ReflectionProperty::setValue() signature deprecation to upgrade guide (#12036) --- UPGRADING | 2 ++ 1 file changed, 2 insertions(+) diff --git a/UPGRADING b/UPGRADING index 1e7f2069dda..8464356a262 100644 --- a/UPGRADING +++ b/UPGRADING @@ -326,6 +326,8 @@ PHP 8.3 UPGRADE NOTES - Reflection: . Return type of ReflectionClass::getStaticProperties() is no longer nullable. + . Calling ReflectionProperty::setValue() with only one parameter is deprecated. + To set static properties, pass null as the first parameter. - Standard: . E_NOTICEs emitted by unserialize() have been promoted to E_WARNING.