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

src/app/Http/Controllers/PermissionCrudController.php 1 location

@@ 44-50 (lines=7) @@
41
                'type'  => 'text',
42
            ]);
43
44
            if (config('backpack.permissionmanager.multiple_guards')) {
45
                $this->crud->addColumn([
46
                    'name'  => 'guard_name',
47
                    'label' => trans('backpack::permissionmanager.guard_type'),
48
                    'type'  => 'text',
49
                ]);
50
            }
51
        });
52
53
        $this->crud->operation(['create', 'update'], function() {

src/app/Http/Controllers/RoleCrudController.php 1 location

@@ 43-49 (lines=7) @@
40
                'label' => trans('backpack::permissionmanager.name'),
41
                'type'  => 'text',
42
            ]);
43
            if (config('backpack.permissionmanager.multiple_guards')) {
44
                $this->crud->addColumn([
45
                    'name'  => 'guard_name',
46
                    'label' => trans('backpack::permissionmanager.guard_type'),
47
                    'type'  => 'text',
48
                ]);
49
            }
50
            $this->crud->addColumn([
51
                // n-n relationship (with pivot table)
52
                'label'     => ucfirst(trans('backpack::permissionmanager.permission_plural')),