Completed
Push — master ( 1ef569...68640c )
by Tim
02:28
created
app/Http/Controllers/CallbackController.php 3 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   +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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      */
21 21
     public function index()
22 22
     {
23
-        $data['query'] = Callback::all();
23
+        $data[ 'query' ] = Callback::all();
24 24
     	return view('callbacks/list', $data);
25 25
     }
26 26
 
Please login to merge, or discard this patch.