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 = 3-3 lines in 2 locations

src/Provider/BrowscapPhp.php 1 location

@@ 225-227 (lines=3) @@
222
            $device->setType($resultRaw->device_type);
223
        }
224
225
        if (isset($resultRaw->ismobiledevice) && $this->isRealResult($resultRaw->ismobiledevice) === true && $resultRaw->ismobiledevice === true) {
226
            $device->setIsMobile(true);
227
        }
228
229
        if (isset($resultRaw->device_pointing_method) && $resultRaw->device_pointing_method == 'touchscreen') {
230
            $device->setIsTouch(true);

src/Provider/Http/NeutrinoApiCom.php 1 location

@@ 255-257 (lines=3) @@
252
            $device->setType($resultRaw->type);
253
        }
254
255
        if (isset($resultRaw->is_mobile) && $this->isRealResult($resultRaw->is_mobile) === true) {
256
            $device->setIsMobile(true);
257
        }
258
    }
259
260
    public function parse($userAgent, array $headers = [])