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

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