Completed
Pull Request — master (#126)
by Glenn
02:14
created
app/Http/Controllers/HomeController.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 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.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     /**
23 23
      * Show the application dashboard.
24 24
      *
25
-     * @return \Illuminate\Http\Response
25
+     * @return \Illuminate\Http\RedirectResponse
26 26
      */
27 27
     public function index()
28 28
     {
Please login to merge, or discard this patch.
app/Http/Controllers/WelcomeController.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     /**
51 51
      * Save the customer.
52 52
      *
53
-     * @return \Illuminate\Http\Response
53
+     * @return \Illuminate\Http\RedirectResponse
54 54
      */
55 55
     public function registerCustomer(Request $request)
56 56
     {
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Http\Request;
6 6
 
7
-use App\Http\Requests;
8
-
9 7
 class DepartmentController extends Controller
10 8
 {
11 9
     /**
Please login to merge, or discard this patch.