Skip to content

Commit

Permalink
Merge pull request #979 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
othercorey committed Dec 15, 2023
2 parents 195293e + fe94445 commit 12dedc1
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(): void

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

/**
Expand Down

0 comments on commit 12dedc1

Please sign in to comment.