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

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

@@ 398-402 (lines=5) @@
395
                continue;
396
            }//end if
397
398
            if ($tokens[$nextToken]['code'] !== T_DOUBLE_ARROW
399
                && $tokens[$nextToken]['code'] !== T_COMMA
400
            ) {
401
                continue;
402
            }
403
404
            $currentEntry = array();
405

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

@@ 208-210 (lines=3) @@
205
				continue;
206
			}
207
208
			if ( T_DOUBLE_ARROW !== $tokens[ $nextToken ]['code'] && T_COMMA !== $tokens[ $nextToken ]['code'] ) {
209
				continue;
210
			}
211
212
			$currentEntry = array();
213