Passed
Branch dev5 (1d6d9a)
by Ron
09:07
created
app/Http/Controllers/DashboardController.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -35,12 +35,12 @@
 block discarded – undo
35 35
         Log::debug('Tech Tip Favorites for ' . Auth::user()->full_name . ': ', $tipFavs->toArray());
36 36
 
37 37
         return view('dashboard', [
38
-           'custFavs'    => $custFavs,
39
-           'tipFavs'     => $tipFavs,
40
-           'tips30'      => $tips30Days,
41
-           'tipsAll'     => $tipsTotal,
42
-           'activeLinks' => $activeLinks,
43
-           'totalLinks'  => $totalLinks,
38
+            'custFavs'    => $custFavs,
39
+            'tipFavs'     => $tipFavs,
40
+            'tips30'      => $tips30Days,
41
+            'tipsAll'     => $tipsTotal,
42
+            'activeLinks' => $activeLinks,
43
+            'totalLinks'  => $totalLinks,
44 44
         ]);
45 45
     }
46 46
 
Please login to merge, or discard this patch.
database/seeds/DatabaseSeeder.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
12 12
     public function run()
13 13
     {
14 14
         //  TODO:  add seeders for demo setup
15
-         $this->call(UserTableSeeder::class);
16
-         $this->call(EquipmentSeeder::class);
17
-         $this->call(CustomerSeeder::class);
18
-         $this->call(TechTipsSeeder::class);
19
-         $this->call(ConfigSeeder::class);
15
+            $this->call(UserTableSeeder::class);
16
+            $this->call(EquipmentSeeder::class);
17
+            $this->call(CustomerSeeder::class);
18
+            $this->call(TechTipsSeeder::class);
19
+            $this->call(ConfigSeeder::class);
20 20
     }
21 21
 }
Please login to merge, or discard this patch.