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 3 locations

src/Provider/Http/NeutrinoApiCom.php 1 location

@@ 199-206 (lines=8) @@
196
     * @param Model\Bot $bot
197
     * @param stdClass  $resultRaw
198
     */
199
    private function hydrateBot(Model\Bot $bot, stdClass $resultRaw)
200
    {
201
        $bot->setIsBot(true);
202
203
        if (isset($resultRaw->browser_name) && $this->isRealResult($resultRaw->browser_name) === true) {
204
            $bot->setName($resultRaw->browser_name);
205
        }
206
    }
207
208
    /**
209
     *

src/Provider/Http/UdgerCom.php 1 location

@@ 176-183 (lines=8) @@
173
     * @param Model\Bot $bot
174
     * @param stdClass  $resultRaw
175
     */
176
    private function hydrateBot(Model\Bot $bot, stdClass $resultRaw)
177
    {
178
        $bot->setIsBot(true);
179
180
        if (isset($resultRaw->ua_family) && $this->isRealResult($resultRaw->ua_family) === true) {
181
            $bot->setName($resultRaw->ua_family);
182
        }
183
    }
184
185
    /**
186
     *

src/Provider/Http/UserAgentApiCom.php 1 location

@@ 171-178 (lines=8) @@
168
     * @param Model\Bot $bot
169
     * @param stdClass  $resultRaw
170
     */
171
    private function hydrateBot(Model\Bot $bot, stdClass $resultRaw)
172
    {
173
        $bot->setIsBot(true);
174
175
        if (isset($resultRaw->platform_name) && $this->isRealResult($resultRaw->platform_name) === true) {
176
            $bot->setName($resultRaw->platform_name);
177
        }
178
    }
179
180
    /**
181
     *