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 ( 6a1e03...a8e200 )
by José
09:26
created
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/API/V1/CampaignController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 
33 33
         $campaign = new Campaign();
34 34
         $campaign->title = $request[ 'title' ];
35
-        $campaign->description = $request['description'];
35
+        $campaign->description = $request[ 'description' ];
36 36
         $campaign->expires = $request[ 'expires' ];
37 37
         //        $campaign->user_id = $request[ 'user_id' ];
38 38
         // use auth guard instead of $request['user_id'].
Please login to merge, or discard this patch.