Skip to content

Commit

Permalink
Fixed ReflectionProperty::setValue() deprecation warning when working…
Browse files Browse the repository at this point in the history
… on PHP 8.3
  • Loading branch information
Bird87ZA committed Dec 15, 2023
1 parent c1cda97 commit fd2800f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Panel/MailPanel.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function initialize()

$configs[$name] = $transport;
}
$property->setValue($configs);
$reflection->setStaticPropertyValue('_config', $configs);
}

/**
Expand Down

0 comments on commit fd2800f

Please sign in to comment.