Passed
Push — master ( 2f6af2...30b37d )
by Graham
120:22 queued 118:58
created
src/PhpOption/Some.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
     public function flatMap($callable)
93 93
     {
94 94
         $rs = call_user_func($callable, $this->value);
95
-        if ( ! $rs instanceof Option) {
95
+        if (!$rs instanceof Option) {
96 96
             throw new \RuntimeException('Callables passed to flatMap() must return an Option. Maybe you should use map() instead?');
97 97
         }
98 98
 
Please login to merge, or discard this patch.