From fe94445b9ef1129263abf38379088c7c35bcc526 Mon Sep 17 00:00:00 2001 From: Bird87ZA Date: Fri, 15 Dec 2023 19:07:07 +0100 Subject: [PATCH] Fixed ReflectionProperty::setValue() deprecation warning when working on PHP 8.3 --- src/Panel/MailPanel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Panel/MailPanel.php b/src/Panel/MailPanel.php index b0470702..609f1c31 100644 --- a/src/Panel/MailPanel.php +++ b/src/Panel/MailPanel.php @@ -67,7 +67,7 @@ public function initialize(): void $configs[$name] = $transport; } - $property->setValue($configs); + $reflection->setStaticPropertyValue('_config', $configs); } /**