Skip to content

Commit

Permalink
Merge pull request #980 from Bird87ZA/fixed_deprecation_warning
Browse files Browse the repository at this point in the history
Fixed ReflectionProperty::setValue() deprecation warning when working on PHP 8.3
  • Loading branch information
markstory authored Dec 15, 2023
2 parents c1cda97 + fd2800f commit 49c841e
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 49c841e

Please sign in to comment.