Test Failed
Push — master ( 96ccf6...731ee2 )
by Terzi
07:18 queued 02:18
created
src/Dashboard/Panels/MembersPanel.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -18,13 +18,13 @@
 block discarded – undo
18 18
 
19 19
         $total = $this->createModel()->count();
20 20
         $signedLastWeek = $this->createModel()
21
-                                 ->where('created_at', '>=', $weekAgo)->count();
21
+                                    ->where('created_at', '>=', $weekAgo)->count();
22 22
         $signedLastMonth = $this->createModel()
23
-                                 ->where('created_at', '>=', $monthAgo)->count();
23
+                                    ->where('created_at', '>=', $monthAgo)->count();
24 24
         $signedStatistics = $this->createModel()
25
-                                 ->where('created_at', '>=', $monthAgo)
26
-                                 ->select([DB::raw('COUNT(id) AS cnt'), DB::raw('DATE(created_at) as dt')])
27
-                                 ->groupBy('dt')->pluck('cnt', 'dt');
25
+                                    ->where('created_at', '>=', $monthAgo)
26
+                                    ->select([DB::raw('COUNT(id) AS cnt'), DB::raw('DATE(created_at) as dt')])
27
+                                    ->groupBy('dt')->pluck('cnt', 'dt');
28 28
 
29 29
         return view(Architect::template()->dashboard('members'), [
30 30
             'total' => $total,
Please login to merge, or discard this patch.