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

vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/Arrays/ArrayDeclarationSniff.php 1 location

@@ 484-490 (lines=7) @@
481
                $indexEnd   = $phpcsFile->findPrevious(T_WHITESPACE, ($nextToken - 1), $arrayStart, true);
482
                $indexStart = $phpcsFile->findStartOfStatement($indexEnd);
483
484
                if ($indexStart === $indexEnd) {
485
                    $currentEntry['index']         = $indexEnd;
486
                    $currentEntry['index_content'] = $tokens[$indexEnd]['content'];
487
                } else {
488
                    $currentEntry['index']         = $indexStart;
489
                    $currentEntry['index_content'] = $phpcsFile->getTokensAsString($indexStart, ($indexEnd - $indexStart + 1));
490
                }
491
492
                $indexLength = strlen($currentEntry['index_content']);
493
                if ($maxLength < $indexLength) {

vendor/wp-coding-standards/wpcs/WordPress/Sniffs/Arrays/ArrayDeclarationSniff.php 1 location

@@ 281-287 (lines=7) @@
278
				$indexEnd   = $phpcsFile->findPrevious( T_WHITESPACE, ( $nextToken - 1 ), $arrayStart, true );
279
				$indexStart = $phpcsFile->findStartOfStatement( $indexEnd );
280
281
				if ( $indexStart === $indexEnd ) {
282
					$currentEntry['index']         = $indexEnd;
283
					$currentEntry['index_content'] = $tokens[ $indexEnd ]['content'];
284
				} else {
285
					$currentEntry['index']         = $indexStart;
286
					$currentEntry['index_content'] = $phpcsFile->getTokensAsString( $indexStart, ( $indexEnd - $indexStart + 1 ) );
287
				}
288
289
				$indexLength = strlen( $currentEntry['index_content'] );
290
				if ( $maxLength < $indexLength ) {