Completed
Push — master ( 92c593...aaa14d )
by Tim
03:08
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/DepartmentController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      * Store a newly created resource in storage.
50 50
      *
51 51
      * @param  Requests\DepartmentsValidator $input
52
-     * @return \Illuminate\Http\Response
52
+     * @return \Illuminate\Http\RedirectResponse
53 53
      */
54 54
     public function store(Requests\DepartmentsValidator $input)
55 55
     {
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      *
87 87
      * @param  Requests\DepartmentsValidator $input
88 88
      * @param  int $id the department id in the database.
89
-     * @return \Illuminate\Http\Response
89
+     * @return \Illuminate\Http\RedirectResponse
90 90
      */
91 91
     public function update(Requests\DepartmentsValidator $input, $id)
92 92
     {
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      * Remove the specified resource from storage.
99 99
      *
100 100
      * @param  int  $id the department id in the database.
101
-     * @return \Illuminate\Http\Response
101
+     * @return \Illuminate\Http\RedirectResponse
102 102
      */
103 103
     public function destroy($id)
104 104
     {
Please login to merge, or discard this patch.
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.