Test Setup Failed
Pull Request — master (#4)
by Gabriel
02:36
created
src/Rules/Random.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,6 +19,6 @@
 block discarded – undo
19 19
     protected function childCanBeSatisfied(?RequestorInterface $requestor = null): bool
20 20
     {
21 21
         return ($this->randomizer->generateRangedRandomInt(1, 100)
22
-         === $this->randomizer->generateRangedRandomInt(1, 100));
22
+            === $this->randomizer->generateRangedRandomInt(1, 100));
23 23
     }
24 24
 }
Please login to merge, or discard this patch.
src/Rules/TimeAfter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     public function __construct(string $timeAfter, ?Utilities\Time $timeUtility = null)
17 17
     {
18 18
         $this->timeUtility = $timeUtility ?? new Utilities\Time();
19
-        $this->timeAfter  = $this->timeUtility->getImmutableDateTime($timeAfter);
19
+        $this->timeAfter = $this->timeUtility->getImmutableDateTime($timeAfter);
20 20
     }
21 21
 
22 22
     public function getValue()
Please login to merge, or discard this patch.