Completed
Push — master ( 0132dd...cd4a8d )
by Glenn
7s
created
app/Http/Controllers/HomeController.php 1 patch
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 App\Http\Requests;
6
-use Illuminate\Http\Request;
7
-
8 5
 class HomeController extends Controller
9 6
 {
10 7
     /**
Please login to merge, or discard this patch.
app/Http/Controllers/CustomersController.php 1 patch
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
-
7
-use App\Http\Requests;
8 5
 use App\Customer as Customer;
9 6
 
10 7
 class CustomersController extends Controller
Please login to merge, or discard this patch.
app/Http/Controllers/StaffController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -9,14 +9,14 @@
 block discarded – undo
9 9
 class StaffController extends Controller
10 10
 {
11 11
 
12
-	public function index()
13
-	{
14
-    	return view('users/index');
12
+    public function index()
13
+    {
14
+        return view('users/index');
15 15
     }
16 16
 
17 17
 
18 18
     public function profile()
19 19
     {
20
-    	return view('users/profile');
20
+        return view('users/profile');
21 21
     }
22 22
 }
Please login to merge, or discard this patch.