@@ -92,7 +92,7 @@ |
||
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 |