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 ( cd092b...fa3618 )
by Pedro
17:41
created
src/app/Http/Middleware/EnsureEmailVerification.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
             });
27 27
             try {
28 28
                 $verifiedMiddleware = new (app('router')->getMiddleware()['verified'])();
29
-            }catch(Throwable) {
29
+            } catch(Throwable) {
30 30
                 throw new Exception('Missing "verified" alias middleware in App/Http/Kernel.php. More info: https://backpackforlaravel.com/docs/6.x/base-how-to#enable-email-verification-in-backpack-routes');
31 31
             }
32 32
             return $verifiedMiddleware->handle($request, $next);
Please login to merge, or discard this patch.
src/app/Http/Controllers/Auth/VerifyEmailController.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
         try {
26 26
             $signedMiddleware = new (app('router')->getMiddleware()['signed'])();
27
-        }catch(Throwable) {
27
+        } catch(Throwable) {
28 28
             throw new Exception('Missing "signed" alias middleware in App/Http/Kernel.php. More info: https://backpackforlaravel.com/docs/6.x/base-how-to#enable-email-verification-in-backpack-routes');
29 29
         }
30 30
 
Please login to merge, or discard this patch.