Completed
Push — master ( 979881...7eed12 )
by Glenn
12s
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.
app/Http/Controllers/WelcomeController.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Http\Controllers;
4 4
 
5
-use Illuminate\Http\Request;
6
-use App\Http\Requests;
7
-
8 5
 use App\Roles;
9 6
 
10 7
 class RolesController extends Controller
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@
 block discarded – undo
25 25
      */
26 26
     public function index()
27 27
     {
28
-        $data["department"] = Departments::all();
29
-        $data["agents"] = User::all();
28
+        $data[ "department" ] = Departments::all();
29
+        $data[ "agents" ] = User::all();
30 30
         return view('welcome', $data);
31 31
     }
32 32
 }
Please login to merge, or discard this patch.