Passed
Pull Request — master (#233)
by Théo
02:33
created
requirement-checker/tests/RequirementTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,6 +128,6 @@
 block discarded – undo
128 128
         );
129 129
 
130 130
         $this->assertFalse($requirement->isFulfilled());
131
-        $this->assertFalse($requirement->isFulfilled());    // Would have gave `true` if it was evaluated a second time
131
+        $this->assertFalse($requirement->isFulfilled()); // Would have gave `true` if it was evaluated a second time
132 132
     }
133 133
 }
Please login to merge, or discard this patch.
requirement-checker/src/Requirement.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
             $this->fulfilled = $this->checkIsFulfilled->__invoke();
48 48
         }
49 49
 
50
-        return (bool) $this->fulfilled;  // Cast to boolean, `(bool)` and `boolval()` are not available in PHP 5.3
50
+        return (bool) $this->fulfilled; // Cast to boolean, `(bool)` and `boolval()` are not available in PHP 5.3
51 51
     }
52 52
 
53 53
     /**
Please login to merge, or discard this patch.