Completed
Push — master ( 88d579...0cf6ce )
by Glenn
02:53
created
app/Http/Controllers/CallbackController.php 2 patches
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -2,10 +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
-
9 5
 class CustomersController extends Controller
10 6
 {
11 7
 
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,12 +10,12 @@
 block discarded – undo
10 10
 {
11 11
     public function index()
12 12
     {
13
-    	return view('callbacks/list');
13
+        return view('callbacks/list');
14 14
     }
15 15
 
16 16
     public function edit($id)
17 17
     {
18
-    	return view('callbacks/details');
18
+        return view('callbacks/details');
19 19
     }
20 20
 
21 21
 }
Please login to merge, or discard this patch.