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

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

@@ 3421-3428 (lines=8) @@
3418
        $endTokens[T_CLOSE_TAG]        = true;
3419
        $endTokens[T_OPEN_SHORT_ARRAY] = true;
3420
3421
        if ($ignore !== null) {
3422
            $ignore = (array) $ignore;
3423
            foreach ($ignore as $code) {
3424
                if (isset($endTokens[$code]) === true) {
3425
                    unset($endTokens[$code]);
3426
                }
3427
            }
3428
        }
3429
3430
        $lastNotEmpty = $start;
3431
@@ 3489-3496 (lines=8) @@
3486
                      T_CLOSE_TAG            => true,
3487
                     );
3488
3489
        if ($ignore !== null) {
3490
            $ignore = (array) $ignore;
3491
            foreach ($ignore as $code) {
3492
                if (isset($endTokens[$code]) === true) {
3493
                    unset($endTokens[$code]);
3494
                }
3495
            }
3496
        }
3497
3498
        $lastNotEmpty = $start;
3499