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

@@ 80-90 (lines=11) @@
77
     *
78
     * @return array
79
     **/
80
    private function getGuardTypes()
81
    {
82
        $guards = config('auth.guards');
83
84
        $returnable = [];
85
        foreach ($guards as $key => $details) {
86
            $returnable[$key] = $key;
87
        }
88
89
        return $returnable;
90
    }
91
}
92

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

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