Passed
Push — master ( d72aaf...be9d80 )
by Eric
02:14
created
src/FrozenClock.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,9 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/SystemClock.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
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';
Please login to merge, or discard this patch.