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

@@ 1019-1021 (lines=3) @@
1016
                    $request[$this->fields[$k]['store_in']][$this->fields[$k]['name']] = $request[$this->fields[$k]['name']];
1017
1018
                    $remove_fake_field = array_pull($request, $this->fields[$k]['name']);
1019
                    if (!in_array($this->fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
1020
                        array_push($fake_field_columns_to_encode, $this->fields[$k]['store_in']);
1021
                    }
1022
                } else //otherwise in the one defined in the $crud variable
1023
                {
1024
                    $request['extras'][$this->fields[$k]['name']] = $request[$this->fields[$k]['name']];
@@ 1063-1065 (lines=3) @@
1060
            if (isset($this->fields[$k]['fake']) && $this->fields[$k]['fake'] == true) {
1061
                // add it to the request in its appropriate variable - the one defined, if defined
1062
                if (isset($this->fields[$k]['store_in'])) {
1063
                    if (!in_array($this->fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
1064
                        array_push($fake_field_columns_to_encode, $this->fields[$k]['store_in']);
1065
                    }
1066
                } else //otherwise in the one defined in the $crud variable
1067
                {
1068
                    if (!in_array('extras', $fake_field_columns_to_encode, true)) {