Passed
Push — master ( 21275a...bc7452 )
by Eric
01:57
created
src/FrozenClock.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,9 @@
 block discarded – undo
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
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
@@ -35,7 +35,7 @@
 block discarded – undo
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';
Please login to merge, or discard this patch.