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

@@ 73-80 (lines=8) @@
70
     *
71
     * @return \Illuminate\Http\RedirectResponse
72
     */
73
    public function store()
74
    {
75
        $this->crud->request = $this->crud->validateRequest();
76
        $this->crud->request = $this->handlePasswordInput($this->crud->request);
77
        $this->crud->unsetValidation(); // validation has already been run
78
79
        return $this->traitStore();
80
    }
81
82
    /**
83
     * Update the specified resource in the database.
@@ 87-94 (lines=8) @@
84
     *
85
     * @return \Illuminate\Http\RedirectResponse
86
     */
87
    public function update()
88
    {
89
        $this->crud->request = $this->crud->validateRequest();
90
        $this->crud->request = $this->handlePasswordInput($this->crud->request);
91
        $this->crud->unsetValidation(); // validation has already been run
92
93
        return $this->traitUpdate();
94
    }
95
96
    /**
97
     * Handle password input fields.