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

src/Provider/BrowscapPhp.php 3 locations

@@ 163-165 (lines=3) @@
160
            $browser->setName($resultRaw->browser);
161
        }
162
163
        if (isset($resultRaw->version) && $this->isRealResult($resultRaw->version) === true) {
164
            $browser->getVersion()->setComplete($resultRaw->version);
165
        }
166
167
        /*
168
         * renderingEngine
@@ 176-178 (lines=3) @@
173
            $renderingEngine->setName($resultRaw->renderingengine_name);
174
        }
175
176
        if (isset($resultRaw->renderingengine_version) && $this->isRealResult($resultRaw->renderingengine_version) === true) {
177
            $renderingEngine->getVersion()->setComplete($resultRaw->renderingengine_version);
178
        }
179
180
        /*
181
         * operatingSystem
@@ 189-191 (lines=3) @@
186
            $operatingSystem->setName($resultRaw->platform);
187
        }
188
189
        if (isset($resultRaw->platform_version) && $this->isRealResult($resultRaw->platform_version) === true) {
190
            $operatingSystem->getVersion()->setComplete($resultRaw->platform_version);
191
        }
192
193
        /*
194
         * device