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

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

@@ 2810-2815 (lines=6) @@
2807
                // This is a string, so it may be a type hint, but it could
2808
                // also be a constant used as a default value.
2809
                $prevComma = false;
2810
                for ($t = $i; $t >= $opener; $t--) {
2811
                    if ($this->_tokens[$t]['code'] === T_COMMA) {
2812
                        $prevComma = $t;
2813
                        break;
2814
                    }
2815
                }
2816
2817
                if ($prevComma !== false) {
2818
                    $nextEquals = false;
@@ 2819-2824 (lines=6) @@
2816
2817
                if ($prevComma !== false) {
2818
                    $nextEquals = false;
2819
                    for ($t = $prevComma; $t < $i; $t++) {
2820
                        if ($this->_tokens[$t]['code'] === T_EQUAL) {
2821
                            $nextEquals = $t;
2822
                            break;
2823
                        }
2824
                    }
2825
2826
                    if ($nextEquals !== false) {
2827
                        break;