Passed
Push — master ( f0527c...21275a )
by Eric
02:01
created
src/FrozenClock.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,9 @@  discard block
 block discarded – undo
23 23
  */
24 24
 final class FrozenClock implements ClockInterface
25 25
 {
26
-    public function __construct(private DateTimeImmutable $now) {}
26
+    public function __construct(private DateTimeImmutable $now)
27
+    {
28
+}
27 29
 
28 30
     /**
29 31
      * @inheritDoc
@@ -51,7 +53,8 @@  discard block
 block discarded – undo
51 53
          * Ignoring the phpstan error for now. PHPStan and Psalm appear to fight over this a bit.
52 54
          * Look further into it in the future.
53 55
          */
54
-        if ($newNow !== false) { // @phpstan-ignore notIdentical.alwaysTrue
56
+        if ($newNow !== false) {
57
+// @phpstan-ignore notIdentical.alwaysTrue
55 58
             $this->setTo($newNow);
56 59
         }
57 60
     }
Please login to merge, or discard this patch.