Skip to content

Commit fd2800f

Browse files
committed
Fixed ReflectionProperty::setValue() deprecation warning when working on PHP 8.3
1 parent c1cda97 commit fd2800f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Panel/MailPanel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function initialize()
6767

6868
$configs[$name] = $transport;
6969
}
70-
$property->setValue($configs);
70+
$reflection->setStaticPropertyValue('_config', $configs);
7171
}
7272

7373
/**

0 commit comments

Comments
 (0)