Skip to content

Commit 12dedc1

Browse files
authored
Merge pull request #979 from Bird87ZA/fixed_deprecation_warning
Fixed ReflectionProperty::setValue() deprecation warning when working on PHP 8.3
2 parents 195293e + fe94445 commit 12dedc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/Panel/MailPanel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function initialize(): void
6767

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

7373
/**

0 commit comments

Comments
 (0)