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
Pull Request — main (#5301)
by Pedro
25:57 queued 12:24
created
src/app/Http/Controllers/Auth/VerifyEmailController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 class VerifyEmailController extends Controller
11 11
 {
12
-    public null|string $redirectTo = null;
12
+    public null | string $redirectTo = null;
13 13
 
14 14
     /**
15 15
      * Create a new controller instance.
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
         $this->middleware('signed')->only('verifyEmail');
23 23
         $this->middleware('throttle:6,1')->only('resendVerificationEmail');
24 24
 
25
-        if (! backpack_users_have_email()) {
25
+        if (!backpack_users_have_email()) {
26 26
             abort(501, trans('backpack::base.no_email_column'));
27 27
         }
28 28
         // where to redirect after the email is verified
Please login to merge, or discard this patch.