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

@@ 118-128 (lines=11) @@
115
     *
116
     * @return array
117
     **/
118
    private function getGuardTypes()
119
    {
120
        $guards = config('auth.guards');
121
122
        $returnable = [];
123
        foreach ($guards as $key => $details) {
124
            $returnable[$key] = $key;
125
        }
126
127
        return $returnable;
128
    }
129
}
130