Completed
Push — master ( d4ee0c...92c593 )
by Glenn
03:40
created
app/Http/Controllers/CallbackController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  */
14 14
 class CallbackController extends Controller
15 15
 {
16
-	    public function __construct()
16
+        public function __construct()
17 17
     {
18 18
         $this->middleware('auth');
19 19
         $this->middleware('lang');
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     public function index()
28 28
     {
29 29
         $data['query'] = Callback::all();
30
-    	return view('callbacks/list', $data);
30
+        return view('callbacks/list', $data);
31 31
     }
32 32
 
33 33
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      */
60 60
     public function edit($id)
61 61
     {
62
-    	return view('callbacks/details');
62
+        return view('callbacks/details');
63 63
     }
64 64
 
65 65
     /**
Please login to merge, or discard this patch.
app/Http/Controllers/SettingsController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 
9 9
 class SettingsController extends Controller
10 10
 {
11
-	/**
11
+    /**
12 12
      * SettingsController constructor.
13 13
      */
14 14
     public function __construct()
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 
20 20
     public function index()
21 21
     {
22
-    	return view('settings.index');
22
+        return view('settings.index');
23 23
     }
24 24
 
25 25
 
Please login to merge, or discard this patch.