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

Code Duplication    Length = 1-1 lines in 2 locations

src/Crud.php 1 location

@@ 1211-1211 (lines=1) @@
1208
1209
    public function syncField($field)
1210
    {
1211
        if (array_key_exists('name', (array)$field)) return array_merge(['type' => $this->getFieldTypeFromDbColumnType($field['name']), 'value' => '', 'default' => null, 'values' => [], 'attributes' => []], $field);
1212
1213
        return false;
1214
    }

src/ToneCrud.php 1 location

@@ 390-390 (lines=1) @@
387
388
    private function syncField($field)
389
    {
390
        if (array_key_exists('name', (array)$field)) return array_merge(['type' => $this->getType($field['name']), 'value' => '', 'default' => null, 'values' => [], 'attributes' => []], $field);
391
392
        return false;
393
    }