Passed
Pull Request — master (#1573)
by
unknown
24:42 queued 43s
created
Classes/Domain/Search/Statistics/StatisticsRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
             return $row;
69 69
         }, $statisticsRows);
70 70
 
71
-        $statisticsRows = array_slice($statisticsRows,0,$limit);
71
+        $statisticsRows = array_slice($statisticsRows, 0, $limit);
72 72
 
73 73
         return $statisticsRows;
74 74
     }
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
         $statisticsRows = $queryBuilder->execute()->fetchAll();
153 153
         $statisticsRows = $this->mergeRowsWithSameKeyword($statisticsRows);
154 154
 
155
-        $statisticsRows = array_slice($statisticsRows,0,$limit);
155
+        $statisticsRows = array_slice($statisticsRows, 0, $limit);
156 156
 
157 157
         return $statisticsRows;
158 158
     }
Please login to merge, or discard this patch.