@@ -221,7 +221,7 @@ discard block |
||
| 221 | 221 | */ |
| 222 | 222 | public function hasNext() |
| 223 | 223 | { |
| 224 | - if (! $this->startedIterating) { |
|
| 224 | + if ( ! $this->startedIterating) { |
|
| 225 | 225 | $this->ensureIterator(); |
| 226 | 226 | $this->startedIterating = true; |
| 227 | 227 | $this->storeIteratorState(); |
@@ -405,7 +405,7 @@ discard block |
||
| 405 | 405 | */ |
| 406 | 406 | protected function convertCursorType() |
| 407 | 407 | { |
| 408 | - if (! $this->tailable) { |
|
| 408 | + if ( ! $this->tailable) { |
|
| 409 | 409 | return null; |
| 410 | 410 | } |
| 411 | 411 | |
@@ -446,7 +446,7 @@ discard block |
||
| 446 | 446 | protected function wrapTraversable(\Traversable $traversable) |
| 447 | 447 | { |
| 448 | 448 | foreach ($traversable as $key => $value) { |
| 449 | - if (isset($value->_id) && ($value->_id instanceof \MongoDB\BSON\ObjectID || !is_object($value->_id))) { |
|
| 449 | + if (isset($value->_id) && ($value->_id instanceof \MongoDB\BSON\ObjectID || ! is_object($value->_id))) { |
|
| 450 | 450 | $key = (string) $value->_id; |
| 451 | 451 | } |
| 452 | 452 | yield $key => $value; |