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

@@ 586-592 (lines=7) @@
583
            $this->values['colors'] = false;
584
            break;
585
        case 'config-set':
586
            if (isset($this->_cliArgs[($pos + 1)]) === false
587
                || isset($this->_cliArgs[($pos + 2)]) === false
588
            ) {
589
                echo 'ERROR: Setting a config option requires a name and value'.PHP_EOL.PHP_EOL;
590
                $this->printUsage();
591
                exit(0);
592
            }
593
594
            $key     = $this->_cliArgs[($pos + 1)];
595
            $value   = $this->_cliArgs[($pos + 2)];
@@ 638-644 (lines=7) @@
635
            $this->printConfigData($data);
636
            exit(0);
637
        case 'runtime-set':
638
            if (isset($this->_cliArgs[($pos + 1)]) === false
639
                || isset($this->_cliArgs[($pos + 2)]) === false
640
            ) {
641
                echo 'ERROR: Setting a runtime config option requires a name and value'.PHP_EOL.PHP_EOL;
642
                $this->printUsage();
643
                exit(0);
644
            }
645
646
            $key   = $this->_cliArgs[($pos + 1)];
647
            $value = $this->_cliArgs[($pos + 2)];