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