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 — development ( 10c666...423d6b )
by José
03:28
created
app/Http/Controllers/API/V1/InvitesController.php 2 patches
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.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $user = JWTAuth::parseToken()->authenticate();
23 23
 
24 24
         $invite = new Invite();
25
-        $invite->invite_code = Hash::make($request['invite_code']);
25
+        $invite->invite_code = Hash::make($request[ 'invite_code' ]);
26 26
         $invite->user_id = $user->id;
27 27
         $invite->save();
28 28
 
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
      *
40 40
      * These routes all receive session state, CSRF protection, etc.
41 41
      */
42
-     /*
42
+      /*
43 43
     protected function mapWebRoutes()
44 44
     {
45 45
         Route::group(
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
             [
65 65
             'middleware' => 'api',
66 66
             'namespace' => $this->namespace,
67
-            ], function ($router) {
67
+            ], function($router) {
68 68
                 include base_path('routes/api.php');
69 69
             }
70 70
         );
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/AuthenticateController.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
        * Authenticate the user
19 19
        *
20 20
        * @param Request $request
21
-       * @return void
21
+       * @return \Illuminate\Http\JsonResponse
22 22
       */
23 23
     public function authenticate(Request $request)
24 24
     {
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
     /**
101 101
      * Get the current user (logged in) information
102 102
      *
103
-     * @return void
103
+     * @return \Illuminate\Http\JsonResponse
104 104
      */
105 105
     public function userInfo()
106 106
     {
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
        *
20 20
        * @param Request $request
21 21
        * @return void
22
-      */
22
+       */
23 23
     public function authenticate(Request $request)
24 24
     {
25 25
         // grab credentials from the request
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
               'email'      =>   $user->email,
119 119
               'username'   =>   $user->username,
120 120
               'blood_type' =>   $user->donor->bloodType->code,
121
-              'avatar'     =>   '',//$user->avatar,
121
+              'avatar'     =>   '', //$user->avatar,
122 122
               'birthdate'  =>   $user->birthdate,
123 123
               'phone'      =>   $user->phone,
124 124
               'bio'        =>   $user->bio
Please login to merge, or discard this patch.