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
Branch development (65354c)
by José
02:57
created
app/Http/Controllers/API/V1/CampaignController.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,6 @@
 block discarded – undo
33 33
     /**
34 34
      * Get all details of a campaign
35 35
      *
36
-     * @param  integer $id
37 36
      * @return \Illuminate\Http\JsonResponse
38 37
      */
39 38
     public function show($campaign)
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     public function show($campaign)
40 40
     {
41 41
 
42
-       return new CampaignResource(Campaign::find($campaign));
42
+        return new CampaignResource(Campaign::find($campaign));
43 43
 
44 44
     }
45 45
 
Please login to merge, or discard this patch.
app/Models/User.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,6 +163,6 @@
 block discarded – undo
163 163
      */
164 164
     public function getPhoneFullNameAttribute()
165 165
     {
166
-        return $this->attributes[ 'first_name' ]. $this->attributes[ 'last_name' ];
166
+        return $this->attributes[ 'first_name' ].$this->attributes[ 'last_name' ];
167 167
     }
168 168
 }
Please login to merge, or discard this patch.