Completed
Push — master ( a34a29...da1581 )
by Jacob
7s
created
src/Logger.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,8 @@
 block discarded – undo
46 46
      */
47 47
     public function logQuery(array $query)
48 48
     {
49
-        if (isset($query['batchInsert']) && null !== $this->batchInsertThreshold && $this->batchInsertThreshold <= $query['num']) {
50
-            $query['data'] = '**'.$query['num'].' item(s)**';
49
+        if (isset($query[ 'batchInsert' ]) && null !== $this->batchInsertThreshold && $this->batchInsertThreshold <= $query[ 'num' ]) {
50
+            $query[ 'data' ] = '**' . $query[ 'num' ] . ' item(s)**';
51 51
         }
52 52
 
53 53
         array_walk_recursive($query, function(&$value, $key) {
Please login to merge, or discard this patch.