Skip to content

Commit

Permalink
Change fixedTime property to non-nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
omerimzali committed Feb 3, 2025
1 parent 1a52930 commit 50aa7ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Monolog/Clock.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Clock implements ClockInterface
{
private bool $useMicroseconds;
private ?\DateTimeZone $timezone;
private ?JsonSerializableDateTimeImmutable $fixedTime;
private JsonSerializableDateTimeImmutable $fixedTime;

public function __construct(bool $useMicroseconds = true, ?\DateTimeZone $timezone = null)
{
Expand Down

0 comments on commit 50aa7ab

Please sign in to comment.