Test Failed
Push — dev5 ( d8a4d3...9629db )
by Ron
08:46
created
app/Http/Controllers/DashboardController.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,12 +26,12 @@
 block discarded – undo
26 26
 
27 27
         //  Get Dashboard data
28 28
         $custFavs    = CustomerFavs::where('user_id', Auth::user()->user_id)
29
-            ->with(array('Customers' => function($query){
29
+            ->with(array('Customers' => function($query) {
30 30
                 $query->select('cust_id', 'name');
31 31
             }))
32 32
             ->get();
33 33
         $tipFavs     = TechTipFavs::where('user_id', Auth::user()->user_id)
34
-            ->with(array('TechTips' => function($query){
34
+            ->with(array('TechTips' => function($query) {
35 35
                 $query->select('tip_id', 'subject');
36 36
             }))
37 37
             ->get();
Please login to merge, or discard this patch.