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

vendor/ezyang/htmlpurifier/library/HTMLPurifier/Lexer/PH5P.php 2 locations

@@ 4224-4234 (lines=11) @@
4221
            $this->stack[0]->appendChild($comment);
4222
4223
            /* An end tag with the tag name "html" */
4224
        } elseif ($token['type'] === HTML5::ENDTAG && $token['name'] === 'html') {
4225
            /* If the parser was originally created in order to handle the
4226
            setting of an element's innerHTML attribute, this is a parse error;
4227
            ignore the token. (The element will be an html element in this
4228
            case.) (innerHTML case) */
4229
4230
            /* Otherwise, switch to the trailing end phase. */
4231
            $this->phase = self::END_PHASE;
4232
4233
            /* Anything else */
4234
        } else {
4235
            /* Parse error. Set the insertion mode to "in body" and reprocess
4236
            the token. */
4237
            $this->mode = self::IN_BODY;
@@ 4331-4338 (lines=8) @@
4328
            $this->insertComment($token['data']);
4329
4330
            /* An end tag with the tag name "html" */
4331
        } elseif ($token['name'] === 'html' &&
4332
            $token['type'] === HTML5::ENDTAG
4333
        ) {
4334
            /* Switch to the trailing end phase. */
4335
            $this->phase = self::END_PHASE;
4336
4337
            /* A start tag with the tag name "noframes" */
4338
        } elseif ($token['name'] === 'noframes' &&
4339
            $token['type'] === HTML5::STARTTAG
4340
        ) {
4341
            /* Process the token as if the insertion mode had been "in body". */