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

@@ 216-218 (lines=3) @@
213
            $device->setModel($resultRaw->device_name);
214
        }
215
216
        if (isset($resultRaw->device_brand_name) && $this->isRealResult($resultRaw->device_brand_name) === true) {
217
            $device->setBrand($resultRaw->device_brand_name);
218
        }
219
220
        if (isset($resultRaw->device_type) && $this->isRealResult($resultRaw->device_type) === true) {
221
            // @todo convert to a common set of types (over all vendors)

src/Provider/Http/NeutrinoApiCom.php 1 location

@@ 247-249 (lines=3) @@
244
            $device->setModel($resultRaw->mobile_model);
245
        }
246
247
        if (isset($resultRaw->mobile_brand) && $this->isRealResult($resultRaw->mobile_brand) === true) {
248
            $device->setBrand($resultRaw->mobile_brand);
249
        }
250
251
        if (isset($resultRaw->type) && $this->isRealResult($resultRaw->type) === true) {
252
            $device->setType($resultRaw->type);