Test Setup Failed
Pull Request — master (#11)
by
unknown
18:13 queued 15:43
created
src/Rules/AbstractRule.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 
59 59
     protected function requestorHasMatchingId(
60 60
         Identification\IdentificationInterface $identification,
61
-		?RequestorInterface $requestor = null
61
+        ?RequestorInterface $requestor = null
62 62
     ): bool {
63 63
         if (!$requestor) {
64 64
             return false;
Please login to merge, or discard this patch.
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.