From fd2800fd3501041ad391218ea521feadef3b101c Mon Sep 17 00:00:00 2001 From: Bird87ZA Date: Fri, 15 Dec 2023 21:20:33 +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 6bffeba3..1e14223e 100644 --- a/src/Panel/MailPanel.php +++ b/src/Panel/MailPanel.php @@ -67,7 +67,7 @@ public function initialize() $configs[$name] = $transport; } - $property->setValue($configs); + $reflection->setStaticPropertyValue('_config', $configs); } /**