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

src/app/Http/Controllers/UserCrudController.php 2 locations

@@ 99-106 (lines=8) @@
96
     *
97
     * @return \Illuminate\Http\RedirectResponse
98
     */
99
    public function store()
100
    {
101
        $this->crud->request = $this->crud->validateRequest();
102
        $this->crud->request = $this->handlePasswordInput($this->crud->request);
103
        $this->crud->unsetValidation(); // validation has already been run
104
105
        return $this->traitStore();
106
    }
107
108
    /**
109
     * Update the specified resource in the database.
@@ 113-120 (lines=8) @@
110
     *
111
     * @return \Illuminate\Http\RedirectResponse
112
     */
113
    public function update()
114
    {
115
        $this->crud->request = $this->crud->validateRequest();
116
        $this->crud->request = $this->handlePasswordInput($this->crud->request);
117
        $this->crud->unsetValidation(); // validation has already been run
118
119
        return $this->traitUpdate();
120
    }
121
122
    /**
123
     * Handle password input fields.