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/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
    }

src/Crud.php 1 location

@@ 1257-1257 (lines=1) @@
1254
1255
    public function syncField($field)
1256
    {
1257
        if (array_key_exists('name', (array)$field)) return array_merge(['type' => $this->getFieldTypeFromDbColumnType($field['name']), 'value' => '', 'default' => null, 'values' => [], 'attributes' => []], $field);
1258
1259
        return false;
1260
    }