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

@@ 232-234 (lines=3) @@
229
            $device->setModel($resultRaw->device_name);
230
        }
231
232
        if (isset($resultRaw->device_brand_name) && $this->isRealResult($resultRaw->device_brand_name) === true) {
233
            $device->setBrand($resultRaw->device_brand_name);
234
        }
235
236
        if (isset($resultRaw->device_type) && $this->isRealResult($resultRaw->device_type) === true) {
237
            // @todo convert to a common set of types (over all vendors)

src/Provider/Http/NeutrinoApiCom.php 1 location

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