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

@@ 223-225 (lines=3) @@
220
            $device->setModel($resultRaw->device_name);
221
        }
222
223
        if (isset($resultRaw->device_brand_name) && $this->isRealResult($resultRaw->device_brand_name) === true) {
224
            $device->setBrand($resultRaw->device_brand_name);
225
        }
226
227
        if (isset($resultRaw->device_type) && $this->isRealResult($resultRaw->device_type) === true) {
228
            // @todo convert to a common set of types (over all vendors)

src/Provider/Http/NeutrinoApiCom.php 1 location

@@ 253-255 (lines=3) @@
250
            $device->setModel($resultRaw->mobile_model);
251
        }
252
253
        if (isset($resultRaw->mobile_brand) && $this->isRealResult($resultRaw->mobile_brand) === true) {
254
            $device->setBrand($resultRaw->mobile_brand);
255
        }
256
257
        if (isset($resultRaw->type) && $this->isRealResult($resultRaw->type) === true) {
258
            $device->setType($resultRaw->type);