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 = 6-9 lines in 2 locations

vendor/ezyang/htmlpurifier/library/HTMLPurifier/Config.php 2 locations

@@ 536-544 (lines=9) @@
533
            }
534
            if (!empty($this->definitions[$type])) {
535
                $def = $this->definitions[$type];
536
                if ($def->setup && !$optimized) {
537
                    $extra = $this->chatty ?
538
                        " (try moving this code block earlier in your initialization)" :
539
                        "";
540
                    throw new HTMLPurifier_Exception(
541
                        "Cannot retrieve raw definition after it has already been setup" .
542
                        $extra
543
                    );
544
                }
545
                if ($def->optimized === null) {
546
                    $extra = $this->chatty ? " (try flushing your cache)" : "";
547
                    throw new HTMLPurifier_Exception(
@@ 545-550 (lines=6) @@
542
                        $extra
543
                    );
544
                }
545
                if ($def->optimized === null) {
546
                    $extra = $this->chatty ? " (try flushing your cache)" : "";
547
                    throw new HTMLPurifier_Exception(
548
                        "Optimization status of definition is unknown" . $extra
549
                    );
550
                }
551
                if ($def->optimized !== $optimized) {
552
                    $msg = $optimized ? "optimized" : "unoptimized";
553
                    $extra = $this->chatty ?