x Sorry, these patches are not available anymore due to data migration. Please run a fresh inspection.
Completed
Push — master ( d949a7...15ba37 )
by Andreas
15s queued 12s
created
lib/Mongo/MongoCursor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
      */
243 243
     public function hasNext()
244 244
     {
245
-        if (! $this->startedIterating) {
245
+        if ( ! $this->startedIterating) {
246 246
             $this->ensureIterator();
247 247
             $this->startedIterating = true;
248 248
             $this->storeIteratorState();
@@ -426,7 +426,7 @@  discard block
 block discarded – undo
426 426
      */
427 427
     protected function convertCursorType()
428 428
     {
429
-        if (! $this->tailable) {
429
+        if ( ! $this->tailable) {
430 430
             return null;
431 431
         }
432 432
 
Please login to merge, or discard this patch.
lib/Alcaeus/MongoDbAdapter/CursorIterator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,13 +23,13 @@
 block discarded – undo
23 23
 
24 24
     public function key()
25 25
     {
26
-        if (!$this->useIdAsKey) {
26
+        if ( ! $this->useIdAsKey) {
27 27
             return parent::key();
28 28
         }
29 29
 
30 30
         $current = $this->current();
31 31
 
32
-        if (!isset($current->_id) || (is_object($current->_id) && !$current->_id instanceof ObjectID)) {
32
+        if ( ! isset($current->_id) || (is_object($current->_id) && ! $current->_id instanceof ObjectID)) {
33 33
             return parent::key();
34 34
         }
35 35
 
Please login to merge, or discard this patch.