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 — add-email-confirmation ( a00bce )
by Pedro
13:44
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
      * Create a new controller instance.
15 15
      *
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
         $this->middleware('signed')->only('verifyEmail');
22 22
         $this->middleware('throttle:6,1')->only('resendVerificationEmail');
23 23
 
24
-        if (! backpack_users_have_email()) {
24
+        if (!backpack_users_have_email()) {
25 25
             abort(501, trans('backpack::base.no_email_column'));
26 26
         }
27 27
         // where to redirect after the email is verified
Please login to merge, or discard this patch.
src/app/Http/Controllers/CrudController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
             return;
24 24
         }
25 25
 
26
-        if(config('backpack.base.setup_veryfy_email_routes', false)) {
26
+        if (config('backpack.base.setup_veryfy_email_routes', false)) {
27 27
             $this->middleware('verified');
28 28
         }
29 29
 
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         //
36 36
         // It's done inside a middleware closure in order to have
37 37
         // the complete request inside the CrudPanel object.
38
-        $this->middleware(function ($request, $next) {
38
+        $this->middleware(function($request, $next) {
39 39
             $this->crud = app('crud');
40 40
 
41 41
             $this->crud->setRequest($request);
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
     protected function setupConfigurationForCurrentOperation()
100 100
     {
101 101
         $operationName = $this->crud->getCurrentOperation();
102
-        if (! $operationName) {
102
+        if (!$operationName) {
103 103
             return;
104 104
         }
105 105
 
Please login to merge, or discard this patch.