Completed
Push — master ( 5eeedf...c04568 )
by Jacob
02:57
created
DataCollector/MongoDb/PrettyDataCollector.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
                 $grouped[$cursor][count($grouped[$cursor]) - 1][] = $query;
55 55
             } else {
56 56
                 $grouped[$cursor][] = array($query);
57
-                $ordered[] =& $grouped[$cursor][count($grouped[$cursor]) - 1];
57
+                $ordered[] = & $grouped[$cursor][count($grouped[$cursor]) - 1];
58 58
             }
59 59
         }
60 60
 
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
                     // flush the previous and start a new query
74 74
                     if (!empty($query)) {
75 75
                         if ('.' == $query[0]) {
76
-                            $query  = 'db'.$query;
76
+                            $query = 'db'.$query;
77 77
                         }
78 78
 
79 79
                         $this->data['queries'][$i++] = $query.';';
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
 
174 174
         if (!empty($query)) {
175 175
             if ('.' == $query[0]) {
176
-                $query  = 'db'.$query;
176
+                $query = 'db'.$query;
177 177
             }
178 178
 
179 179
             $this->data['queries'][$i++] = $query.';';
Please login to merge, or discard this patch.