Skip to content

Commit

Permalink
fix: mail logger method signature
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepDiver1975 committed Oct 9, 2023
1 parent 9ea1926 commit e057fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/Mail/Logger.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class Logger extends AbstractLogger {
private array $log;

public function log($level, $message, array $context = []) {
public function log($level, string|\Stringable $message, array $context = []) {
$this->log[] = [$level, $message, $context];
}

Expand Down

0 comments on commit e057fb1

Please sign in to comment.