Completed
Pull Request — master (#82)
by Glenn
04:26 queued 01:55
created
app/Http/Controllers/CallbackController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     public function index()
22 22
     {
23 23
         $data['query'] = Callback::all();
24
-    	return view('callbacks/list', $data);
24
+        return view('callbacks/list', $data);
25 25
     }
26 26
 
27 27
 
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public function edit($id)
45 45
     {
46
-    	return view('callbacks/details');
46
+        return view('callbacks/details');
47 47
     }
48 48
 
49 49
 }
Please login to merge, or discard this patch.
app/Http/Controllers/BackupController.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 BackupController extends Controller
10 10
 {
11
-	    public function __construct()
11
+        public function __construct()
12 12
     {
13 13
         $this->middleware('auth');
14 14
         $this->middleware('lang');
@@ -21,6 +21,6 @@  discard block
 block discarded – undo
21 21
      */
22 22
     public function index()
23 23
     {
24
-    	return view('settings.backups');
24
+        return view('settings.backups');
25 25
     }
26 26
 }
Please login to merge, or discard this patch.