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

@@ 111-118 (lines=8) @@
108
     *
109
     * @return \Illuminate\Http\RedirectResponse
110
     */
111
    public function store()
112
    {
113
        $this->crud->setRequest($this->crud->validateRequest());
114
        $this->crud->setRequest($this->handlePasswordInput($this->crud->getRequest()));
115
        $this->crud->unsetValidation(); // validation has already been run
116
117
        return $this->traitStore();
118
    }
119
120
    /**
121
     * Update the specified resource in the database.
@@ 125-132 (lines=8) @@
122
     *
123
     * @return \Illuminate\Http\RedirectResponse
124
     */
125
    public function update()
126
    {
127
        $this->crud->setRequest($this->crud->validateRequest());
128
        $this->crud->setRequest($this->handlePasswordInput($this->crud->getRequest()));
129
        $this->crud->unsetValidation(); // validation has already been run
130
131
        return $this->traitUpdate();
132
    }
133
134
    /**
135
     * Handle password input fields.