Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Passed
Push — send-email-on-user-register ( 7718d7 )
by Pedro
14:06
created
src/app/Http/Controllers/Auth/RegisterController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     public function showRegistrationForm()
89 89
     {
90 90
         // if registration is closed, deny access
91
-        if (! config('backpack.base.registration_open')) {
91
+        if (!config('backpack.base.registration_open')) {
92 92
             abort(403, trans('backpack::base.registration_closed'));
93 93
         }
94 94
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
     public function register(Request $request)
107 107
     {
108 108
         // if registration is closed, deny access
109
-        if (! config('backpack.base.registration_open')) {
109
+        if (!config('backpack.base.registration_open')) {
110 110
             abort(403, trans('backpack::base.registration_closed'));
111 111
         }
112 112
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
         event(new Registered($user));
118 118
         if (config('backpack.base.setup_email_verification_routes')) {
119 119
             Cookie::queue('backpack_email_verification', $user->{config('backpack.base.email_column')}, 30);
120
-            if(config('backpack.base.send_verification_email_on_register')) {
120
+            if (config('backpack.base.send_verification_email_on_register')) {
121 121
                 $user->sendEmailVerificationNotification();
122 122
             }
123 123
             
Please login to merge, or discard this patch.