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

@@ 1127-1129 (lines=3) @@
1124
                    $request[$fields[$k]['store_in']][$fields[$k]['name']] = $request[$fields[$k]['name']];
1125
1126
                    $remove_fake_field = array_pull($request, $fields[$k]['name']);
1127
                    if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
1128
                        array_push($fake_field_columns_to_encode, $fields[$k]['store_in']);
1129
                    }
1130
                } else //otherwise in the one defined in the $crud variable
1131
                {
1132
                    $request['extras'][$fields[$k]['name']] = $request[$fields[$k]['name']];
@@ 1181-1183 (lines=3) @@
1178
            if (isset($fields[$k]['fake']) && $fields[$k]['fake'] == true) {
1179
                // add it to the request in its appropriate variable - the one defined, if defined
1180
                if (isset($fields[$k]['store_in'])) {
1181
                    if (!in_array($fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
1182
                        array_push($fake_field_columns_to_encode, $fields[$k]['store_in']);
1183
                    }
1184
                } else //otherwise in the one defined in the $crud variable
1185
                {
1186
                    if (!in_array('extras', $fake_field_columns_to_encode, true)) {