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

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

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

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