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 4 locations

vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/JS.php 1 location

@@ 796-802 (lines=7) @@
793
794
                for ($i = 0; $i < $numLines; $i++) {
795
                    $newToken['content'] = $tokenLines[$i];
796
                    if ($i === ($numLines - 1)) {
797
                        if ($tokenLines[$i] === '') {
798
                            break;
799
                        }
800
                    } else {
801
                        $newToken['content'] .= $eolChar;
802
                    }
803
804
                    $newToken['type']          = $token['type'];
805
                    $newToken['code']          = $token['code'];

vendor/squizlabs/php_codesniffer/CodeSniffer/Tokenizers/PHP.php 3 locations

@@ 472-478 (lines=7) @@
469
470
                for ($j = 0; $j < $numLines; $j++) {
471
                    $newToken['content'] = $tokenLines[$j];
472
                    if ($j === ($numLines - 1)) {
473
                        if ($tokenLines[$j] === '') {
474
                            break;
475
                        }
476
                    } else {
477
                        $newToken['content'] .= $eolChar;
478
                    }
479
480
                    $newToken['code']          = T_DOUBLE_QUOTED_STRING;
481
                    $newToken['type']          = 'T_DOUBLE_QUOTED_STRING';
@@ 555-561 (lines=7) @@
552
553
                for ($j = 0; $j < $numLines; $j++) {
554
                    $newToken['content'] = $tokenLines[$j];
555
                    if ($j === ($numLines - 1)) {
556
                        if ($tokenLines[$j] === '') {
557
                            break;
558
                        }
559
                    } else {
560
                        $newToken['content'] .= $eolChar;
561
                    }
562
563
                    if ($nowdoc === true) {
564
                        $newToken['code'] = T_NOWDOC;
@@ 874-880 (lines=7) @@
871
872
                for ($i = 0; $i < $numLines; $i++) {
873
                    $newToken['content'] = $tokenLines[$i];
874
                    if ($i === ($numLines - 1)) {
875
                        if ($tokenLines[$i] === '') {
876
                            break;
877
                        }
878
                    } else {
879
                        $newToken['content'] .= $eolChar;
880
                    }
881
882
                    $finalTokens[$newStackPtr] = $newToken;
883
                    $newStackPtr++;