Completed
Pull Request — master (#108)
by
unknown
03:48 queued 01:47
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   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
             'middleware' => 'web',
56 56
             'prefix'     => config('backpack.base.route_prefix'),
57 57
         ],
58
-        function () {
58
+        function() {
59 59
             // if not otherwise configured, setup the auth routes
60 60
             if (config('backpack.base.setup_auth_routes')) {
61 61
                 Route::auth();
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
     public function register()
79 79
     {
80 80
         // register the current package
81
-        $this->app->bind('base', function ($app) {
81
+        $this->app->bind('base', function($app) {
82 82
             return new Base($app);
83 83
         });
84 84
 
Please login to merge, or discard this patch.