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

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

@@ 98-108 (lines=11) @@
95
     *
96
     * @return array
97
     **/
98
    private function getGuardTypes()
99
    {
100
        $guards = config('auth.guards');
101
102
        $returnable = [];
103
        foreach ($guards as $key => $details) {
104
            $returnable[$key] = $key;
105
        }
106
107
        return $returnable;
108
    }
109
}
110

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

@@ 150-160 (lines=11) @@
147
     *
148
     * @return array
149
     **/
150
    private function getGuardTypes()
151
    {
152
        $guards = config('auth.guards');
153
154
        $returnable = [];
155
        foreach ($guards as $key => $details) {
156
            $returnable[$key] = $key;
157
        }
158
159
        return $returnable;
160
    }
161
}
162