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

@@ 973-975 (lines=3) @@
970
                    $request[$this->fields[$k]['store_in']][$this->fields[$k]['name']] = $request[$this->fields[$k]['name']];
971
972
                    $remove_fake_field = array_pull($request, $this->fields[$k]['name']);
973
                    if (!in_array($this->fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
974
                        array_push($fake_field_columns_to_encode, $this->fields[$k]['store_in']);
975
                    }
976
                } else //otherwise in the one defined in the $crud variable
977
                {
978
                    $request['extras'][$this->fields[$k]['name']] = $request[$this->fields[$k]['name']];
@@ 1017-1019 (lines=3) @@
1014
            if (isset($this->fields[$k]['fake']) && $this->fields[$k]['fake'] == true) {
1015
                // add it to the request in its appropriate variable - the one defined, if defined
1016
                if (isset($this->fields[$k]['store_in'])) {
1017
                    if (!in_array($this->fields[$k]['store_in'], $fake_field_columns_to_encode, true)) {
1018
                        array_push($fake_field_columns_to_encode, $this->fields[$k]['store_in']);
1019
                    }
1020
                } else //otherwise in the one defined in the $crud variable
1021
                {
1022
                    if (!in_array('extras', $fake_field_columns_to_encode, true)) {