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

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

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

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