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

app/Plugins/Menus/BackendController.php 2 locations

@@ 262-266 (lines=5) @@
259
            $menu->creator_id = (account()->id);
260
            $this->attachSubmenuIfExists($request, $menu);
261
            $page->menus()->save($menu);
262
            if ($request['submenu_id']) {
263
                $this->reorderRowsFromCollection($this->menus->submenusWhereID($request['submenu_id']));
264
            } else {
265
                $this->reorderRowsFromCollection($this->menus->all());
266
            }
267
268
            return redirect()->route('menus');
269
        } elseif ($this->isExternalPageCreation($request)) {
@@ 279-283 (lines=5) @@
276
            $menu->link = ($request['external_link']);
277
            $this->attachSubmenuIfExists($request, $menu);
278
            $menu->save();
279
            if ($request['submenu_id']) {
280
                $this->reorderRowsFromCollection($this->menus->submenusWhereID($request['submenu_id']));
281
            } else {
282
                $this->reorderRowsFromCollection($this->menus->all());
283
            }
284
285
            return redirect()->route('menus');
286
        }