Completed
Push — master ( 4a15ab...d06fb7 )
by Tim
02:41
created
app/Http/Controllers/StaffController.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
-
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.
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/CustomersController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use App\Customer;
6
-use Illuminate\Http\Request;
7
-
8 6
 use App\Http\Requests;
9 7
 
10 8
 class CustomersController extends Controller
Please login to merge, or discard this patch.