Completed
Push — master ( 88d579...0cf6ce )
by Glenn
02:53
created
app/Http/Controllers/StaffController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,9 +51,9 @@  discard block
 block discarded – undo
51 51
      * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
52 52
      */
53 53
     public function index()
54
-	{
55
-		$data['users'] = User::paginate(15);
56
-    	return view('users/index', $data);
54
+    {
55
+        $data['users'] = User::paginate(15);
56
+        return view('users/index', $data);
57 57
     }
58 58
 
59 59
     /**
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      */
92 92
     public function profile()
93 93
     {
94
-    	return view('users/profile');
94
+        return view('users/profile');
95 95
     }
96 96
 
97 97
     /**
Please login to merge, or discard this patch.
app/Http/Controllers/CallbackController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,12 +10,12 @@
 block discarded – undo
10 10
 {
11 11
     public function index()
12 12
     {
13
-    	return view('callbacks/list');
13
+        return view('callbacks/list');
14 14
     }
15 15
 
16 16
     public function edit($id)
17 17
     {
18
-    	return view('callbacks/details');
18
+        return view('callbacks/details');
19 19
     }
20 20
 
21 21
 }
Please login to merge, or discard this patch.