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

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

@@ 655-661 (lines=7) @@
652
        default:
653
            if (substr($arg, 0, 7) === 'sniffs=') {
654
                $sniffs = explode(',', substr($arg, 7));
655
                foreach ($sniffs as $sniff) {
656
                    if (substr_count($sniff, '.') !== 2) {
657
                        echo 'ERROR: The specified sniff code "'.$sniff.'" is invalid'.PHP_EOL.PHP_EOL;
658
                        $this->printUsage();
659
                        exit(2);
660
                    }
661
                }
662
663
                $this->values['sniffs'] = $sniffs;
664
            } else if (substr($arg, 0, 8) === 'exclude=') {
@@ 666-672 (lines=7) @@
663
                $this->values['sniffs'] = $sniffs;
664
            } else if (substr($arg, 0, 8) === 'exclude=') {
665
                $sniffs = explode(',', substr($arg, 8));
666
                foreach ($sniffs as $sniff) {
667
                    if (substr_count($sniff, '.') !== 2) {
668
                        echo 'ERROR: The specified sniff code "'.$sniff.'" is invalid'.PHP_EOL.PHP_EOL;
669
                        $this->printUsage();
670
                        exit(2);
671
                    }
672
                }
673
674
                $this->values['exclude'] = $sniffs;
675
            } else if (substr($arg, 0, 10) === 'bootstrap=') {