Completed
Pull Request — master (#88)
by Owen
01:58
created
src/app/Notifications/ResetPasswordNotification.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Illuminate\Auth\Notifications\ResetPassword as ResetPassword;
6 6
 use Illuminate\Notifications\Messages\MailMessage;
7
-use Illuminate\Notifications\Notification;
8 7
 
9 8
 class ResetPasswordNotification extends ResetPassword
10 9
 {
Please login to merge, or discard this patch.
src/BaseServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,13 +66,13 @@  discard block
 block discarded – undo
66 66
         // register the 'admin' middleware
67 67
         $router->middleware('admin', app\Http\Middleware\Admin::class);
68 68
 
69
-        $router->group(['namespace' => 'Backpack\Base\app\Http\Controllers'], function ($router) {
69
+        $router->group(['namespace' => 'Backpack\Base\app\Http\Controllers'], function($router) {
70 70
             Route::group(
71 71
                 [
72 72
                     'middleware' => 'web',
73 73
                     'prefix' => config('backpack.base.route_prefix')
74 74
                 ],
75
-                function () {
75
+                function() {
76 76
                     // if not otherwise configured, setup the auth routes
77 77
                     if (config('backpack.base.setup_auth_routes')) {
78 78
                         Route::auth();
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
     public function register()
97 97
     {
98 98
         // register the current package
99
-        $this->app->bind('base', function ($app) {
99
+        $this->app->bind('base', function($app) {
100 100
             return new Base($app);
101 101
         });
102 102
 
Please login to merge, or discard this patch.
src/app/Http/Controllers/Auth/LoginController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
      * Handle a registration request for the application.
123 123
      *
124 124
      * @param  \Illuminate\Http\Request  $request
125
-     * @return \Illuminate\Http\Response
125
+     * @return \Illuminate\Http\RedirectResponse
126 126
      */
127 127
     public function register(Request $request)
128 128
     {
Please login to merge, or discard this patch.