@@ -128,6 +128,6 @@ |
||
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 | } |
@@ -47,7 +47,7 @@ |
||
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 | /** |