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

Completed
Push — development ( e3d956...beb579 )
by José
05:00
created
app/Http/Controllers/API/V1/InvitesController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Illuminate\Http\Request;
6 6
 use DoeSangue\Http\Controllers\Controller;
7 7
 use Tymon\JWTAuth\Facades\JWTAuth;
8
-use DoeSangue\Repositories\Invites;
9 8
 use DoeSangue\Models\Invite;
10 9
 use Hash;
11 10
 
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/V1/InvitationRequestsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     {
21 21
 
22 22
         $guestExist = DB::table('invitation_requests')
23
-                      ->where('guest_email', $request['guest_email'])->first();
23
+                      ->where('guest_email', $request[ 'guest_email' ])->first();
24 24
 
25 25
         if (!$guestExist) {
26 26
             $guest = [
Please login to merge, or discard this patch.