| @@ -25,7 +25,9 @@ | ||
| 25 | 25 | */ | 
| 26 | 26 | final class FrozenClock implements ClockInterface | 
| 27 | 27 |  { | 
| 28 | -    public function __construct(private DateTimeImmutable $now) {} | |
| 28 | + public function __construct(private DateTimeImmutable $now) | |
| 29 | +    { | |
| 30 | +} | |
| 29 | 31 | |
| 30 | 32 | /** | 
| 31 | 33 | * @inheritDoc | 
| @@ -35,7 +35,7 @@ | ||
| 35 | 35 | /** | 
| 36 | 36 | * @throws DateInvalidTimeZoneException If $timezone is passed as string and is invalid. | 
| 37 | 37 | */ | 
| 38 | - public function __construct(null|DateTimeZone|string $timezone = null) | |
| 38 | + public function __construct(null | DateTimeZone | string $timezone = null) | |
| 39 | 39 |      { | 
| 40 | 40 |          if (!$timezone instanceof DateTimeZone) { | 
| 41 | 41 | $timezone ??= 'UTC'; |