Skip to content

Commit

Permalink
Merge pull request #626 from rollbar/fixed/psr-log-1-compatability
Browse files Browse the repository at this point in the history
Fixed test helper method `ArrayLogger:log()` psr/log 1 compatability
  • Loading branch information
danielmorell authored Apr 28, 2023
2 parents dc9e045 + 8d4263f commit e7bb5f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/TestHelpers/ArrayLogger.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ private static function stringify($level, Stringable|string $message): string
/**
* @inheritDoc
*/
public function log($level, Stringable|string $message, array $context = []): void
public function log($level, $message, array $context = []): void
{
$this->logs[] = self::stringify($level, $message);
}
Expand Down

0 comments on commit e7bb5f9

Please sign in to comment.