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

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Generic/Sniffs/WhiteSpace/ScopeIndentSniff.php 1 location

@@ 922-927 (lines=6) @@
919
                    echo "Open PHP tag found on line $line".PHP_EOL;
920
                }
921
922
                if ($checkToken === null) {
923
                    $first         = $phpcsFile->findFirstOnLine(T_WHITESPACE, $i, true);
924
                    $currentIndent = (strlen($tokens[$first]['content']) - strlen(ltrim($tokens[$first]['content'])));
925
                } else {
926
                    $currentIndent = ($tokens[$i]['column'] - 1);
927
                }
928
929
                $lastOpenTag = $i;
930

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/PHP/EmbeddedPhpSniff.php 2 locations

@@ 159-164 (lines=6) @@
156
                }//end if
157
158
                $first = $phpcsFile->findFirstOnLine(T_WHITESPACE, $stackPtr);
159
                if ($first === false) {
160
                    $first  = $phpcsFile->findFirstOnLine(T_INLINE_HTML, $stackPtr);
161
                    $indent = (strlen($tokens[$first]['content']) - strlen(ltrim($tokens[$first]['content'])));
162
                } else {
163
                    $indent = ($tokens[($first + 1)]['column'] - 1);
164
                }
165
166
                $contentColumn = ($tokens[$firstContent]['column'] - 1);
167
                if ($contentColumn !== $indent) {
@@ 194-199 (lines=6) @@
191
            $fix   = $phpcsFile->addFixableError($error, $stackPtr, 'ContentBeforeOpen');
192
            if ($fix === true) {
193
                $first = $phpcsFile->findFirstOnLine(T_WHITESPACE, $stackPtr);
194
                if ($first === false) {
195
                    $first   = $phpcsFile->findFirstOnLine(T_INLINE_HTML, $stackPtr);
196
                    $padding = (strlen($tokens[$first]['content']) - strlen(ltrim($tokens[$first]['content'])));
197
                } else {
198
                    $padding = ($tokens[($first + 1)]['column'] - 1);
199
                }
200
201
                $phpcsFile->fixer->addContentBefore($stackPtr, $phpcsFile->eolChar.str_repeat(' ', $padding));
202
            }