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

vendor/wp-coding-standards/wpcs/WordPress/Sniff.php 1 location

@@ 873-875 (lines=3) @@
870
			);
871
872
			// If we're able to resolve the function name, do so.
873
			if ( $mapped_function && T_CONSTANT_ENCAPSED_STRING === $this->tokens[ $mapped_function ]['code'] ) {
874
				$functionName = trim( $this->tokens[ $mapped_function ]['content'], '\'' );
875
			}
876
		}
877
878
		// If slashing is required, give an error.

vendor/wp-coding-standards/wpcs/WordPress/Sniffs/XSS/EscapeOutputSniff.php 1 location

@@ 309-312 (lines=4) @@
306
						);
307
308
						// If we're able to resolve the function name, do so.
309
						if ( $mapped_function && T_CONSTANT_ENCAPSED_STRING === $this->tokens[ $mapped_function ]['code'] ) {
310
							$functionName = trim( $this->tokens[ $mapped_function ]['content'], '\'' );
311
							$ptr = $mapped_function;
312
						}
313
					}
314
315
					// Skip pointer to after the function.