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 Setup Failed
Pull Request — master (#3250)
by
unknown
16:43
created
database/migrations/2017_09_08_000001_create_account_details_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('account_details', function (Blueprint $table) {
16
+        Schema::create('account_details', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->integer('user_id')->unsigned();
19 19
             $table->string('nickname');
Please login to merge, or discard this patch.
src/app/Library/CrudPanel/Traits/Relationships.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@
 block discarded – undo
190 190
         $belongsToFields = $this->getFieldsWithRelationType('BelongsTo');
191 191
 
192 192
         foreach ($belongsToFields as $relationField) {
193
-            if(method_exists($item, $this->getOnlyRelationEntity($relationField))) {
193
+            if (method_exists($item, $this->getOnlyRelationEntity($relationField))) {
194 194
                 $relatedId = Arr::get($data, $relationField['name']);
195 195
                 $related = $relationField['model']::find($relatedId);
196 196
 
Please login to merge, or discard this patch.