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

vendor/squizlabs/php_codesniffer/CodeSniffer/Fixer.php 2 locations

@@ 576-585 (lines=10) @@
573
        $this->_tokens[$stackPtr]      = $content;
574
        $this->_numFixes++;
575
576
        if (PHP_CODESNIFFER_VERBOSITY > 1) {
577
            $indent = "\t";
578
            if (empty($this->_changeset) === false) {
579
                $indent .= "\tA: ";
580
            }
581
582
            @ob_end_clean();
583
            echo "$indent$sniff (line $line) replaced token $stackPtr ($type) \"$oldContent\" => \"$newContent\"".PHP_EOL;
584
            ob_start();
585
        }
586
587
        return true;
588
@@ 631-640 (lines=10) @@
628
        unset($this->_fixedTokens[$stackPtr]);
629
        $this->_numFixes--;
630
631
        if (PHP_CODESNIFFER_VERBOSITY > 1) {
632
            $indent = "\t";
633
            if (empty($this->_changeset) === false) {
634
                $indent .= "\tR: ";
635
            }
636
637
            @ob_end_clean();
638
            echo "$indent$sniff (line $line) reverted token $stackPtr ($type) \"$oldContent\" => \"$newContent\"".PHP_EOL;
639
            ob_start();
640
        }
641
642
        return true;
643