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 = 3-3 lines in 2 locations

src/Crud.php 2 locations

@@ 1099-1101 (lines=3) @@
1096
                    $request[$fields[$k]['store_in']][$fields[$k]['name']] = $request[$fields[$k]['name']];
1097
1098
                    $remove_fake_field = array_pull($request, $fields[$k]['name']);
1099
                    if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
1100
                        array_push($fake_field_columns_to_encode, $fields[$k]['store_in']);
1101
                    }
1102
                } else {
1103
                    //otherwise in the one defined in the $crud variable
1104
@@ 1151-1153 (lines=3) @@
1148
            if (isset($fields[$k]['fake']) && $fields[$k]['fake'] == true) {
1149
                // add it to the request in its appropriate variable - the one defined, if defined
1150
                if (isset($fields[$k]['store_in'])) {
1151
                    if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
1152
                        array_push($fake_field_columns_to_encode, $fields[$k]['store_in']);
1153
                    }
1154
                } else {
1155
                    //otherwise in the one defined in the $crud variable
1156