Completed
Push — master ( c26c1c...c7d758 )
by Alessandro
10s
created
src/DataCollector/MongoQuerySerializer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         }
47 47
 
48 48
         if (method_exists($item, 'toDateTime')) {
49
-            return 'ISODate("' . $item->toDateTime()->format('c') . '")';
49
+            return 'ISODate("'.$item->toDateTime()->format('c').'")';
50 50
         }
51 51
 
52 52
         if (method_exists($item, '__toString')) {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         }
59 59
 
60 60
         if (is_array($item) || is_object($item)) {
61
-            return self::prepareUnserializableData((array)$item);
61
+            return self::prepareUnserializableData((array) $item);
62 62
         }
63 63
 
64 64
         return $item;
Please login to merge, or discard this patch.