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

@@ 3295-3300 (lines=6) @@
3292
3293
        for ($i = $start; $i >= $end; $i--) {
3294
            $found = (bool) $exclude;
3295
            foreach ($types as $type) {
3296
                if ($this->_tokens[$i]['code'] === $type) {
3297
                    $found = !$exclude;
3298
                    break;
3299
                }
3300
            }
3301
3302
            if ($found === true) {
3303
                if ($value === null) {
@@ 3376-3381 (lines=6) @@
3373
3374
        for ($i = $start; $i < $end; $i++) {
3375
            $found = (bool) $exclude;
3376
            foreach ($types as $type) {
3377
                if ($this->_tokens[$i]['code'] === $type) {
3378
                    $found = !$exclude;
3379
                    break;
3380
                }
3381
            }
3382
3383
            if ($found === true) {
3384
                if ($value === null) {