GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 8-8 lines in 2 locations

src/Provider/Http/NeutrinoApiCom.php 1 location

@@ 185-192 (lines=8) @@
182
     * @param  stdClass $resultRaw
183
     * @return boolean
184
     */
185
    private function isBot(stdClass $resultRaw)
186
    {
187
        if (isset($resultRaw->type) && $resultRaw->type === 'robot') {
188
            return true;
189
        }
190
191
        return false;
192
    }
193
194
    /**
195
     *

src/Provider/Http/UdgerCom.php 1 location

@@ 166-173 (lines=8) @@
163
     * @param  stdClass $resultRaw
164
     * @return boolean
165
     */
166
    private function isBot(stdClass $resultRaw)
167
    {
168
        if (isset($resultRaw->type) && $resultRaw->type === 'Robot') {
169
            return true;
170
        }
171
172
        return false;
173
    }
174
175
    /**
176
     *