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

Test Failed
Push — development ( 1204b9...3784af )
by José
06:44
created
app/Http/Controllers/API/V1/CampaignController.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      * Get all campaigns
27 27
      * 20 queries per page
28 28
      *
29
-     * @return void
29
+     * @return \Illuminate\Http\JsonResponse
30 30
      */
31 31
     public function index()
32 32
     {
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      * Create a new campaign
40 40
      *
41 41
      * @param  CreateCampaignRequest $request
42
-     * @return void
42
+     * @return \Illuminate\Http\JsonResponse
43 43
      */
44 44
     public function store(CreateCampaignRequest $request)
45 45
     {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      * Get all details of a campaign
73 73
      *
74 74
      * @param  integer $id
75
-     * @return void
75
+     * @return \Illuminate\Http\JsonResponse
76 76
      */
77 77
     public function show($id)
78 78
     {
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      *
110 110
      * @param  UpdateCampaignRequest $request
111 111
      * @param  integer               $id
112
-     * @return void
112
+     * @return \Illuminate\Http\JsonResponse
113 113
      */
114 114
     public function update(UpdateCampaignRequest $request, $id)
115 115
     {
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
      * Delete the campaign from platform.
165 165
      *
166 166
      * @param  integer $id
167
-     * @return void
167
+     * @return \Illuminate\Http\JsonResponse
168 168
      */
169 169
     public function destroy($id)
170 170
     {
Please login to merge, or discard this patch.
app/Http/Controllers/API/V1/DonorsController.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     /**
17 17
      * Get all donors
18 18
      *
19
-     * @return void
19
+     * @return \Illuminate\Http\JsonResponse
20 20
      */
21 21
     public function index()
22 22
     {
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      * Show details about the donors
30 30
      *
31 31
      * @param  integer $id
32
-     * @return void
32
+     * @return \Illuminate\Http\JsonResponse
33 33
      */
34 34
     public function show($id)
35 35
     {
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,8 +49,8 @@
 block discarded – undo
49 49
             [
50 50
                 'first_name' => $donor->user->first_name,
51 51
                 'last_name' => $donor->user->last_name,
52
-             //   'email' => $donor->user->email,
53
-             //   'birthdate' => $donor->user->birthdate,
52
+              //   'email' => $donor->user->email,
53
+              //   'birthdate' => $donor->user->birthdate,
54 54
             ]
55 55
         );
56 56
     }
Please login to merge, or discard this patch.
app/Http/Controllers/Auth/AuthenticateController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@
 block discarded – undo
32 32
         // all good so return the token
33 33
         return response()->json(
34 34
             [
35
-             "data" {
35
+              "data" {
36 36
                 'access_token' => $token,
37 37
                 'token_type' => 'Bearer'
38
-             }
38
+              }
39 39
             ]
40 40
         );
41 41
     }
Please login to merge, or discard this patch.