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

vendor/fig-r/psr2r-sniffer/PSR2R/Sniffs/PHP/NoIsNullSniff.php 2 locations

@@ 177-179 (lines=3) @@
174
		$tokens = $phpcsFile->getTokens();
175
176
		$previous = $phpcsFile->findPrevious(PHP_CodeSniffer_Tokens::$emptyTokens, ($index - 1), null, true);
177
		if (!in_array($tokens[$previous]['code'], [T_IS_IDENTICAL, T_IS_NOT_IDENTICAL])) {
178
			return null;
179
		}
180
181
		$previous = $phpcsFile->findPrevious(PHP_CodeSniffer_Tokens::$emptyTokens, ($previous - 1), null, true);
182
		if (!in_array($tokens[$previous]['code'], [T_TRUE, T_FALSE])) {
@@ 198-200 (lines=3) @@
195
		$tokens = $phpcsFile->getTokens();
196
197
		$next = $phpcsFile->findNext(PHP_CodeSniffer_Tokens::$emptyTokens, ($index + 1), null, true);
198
		if (!$next || !in_array($tokens[$next]['code'], [T_IS_IDENTICAL, T_IS_NOT_IDENTICAL])) {
199
			return null;
200
		}
201
202
		$prev = $phpcsFile->findPrevious(PHP_CodeSniffer_Tokens::$emptyTokens, ($next - 1), null, true);
203
		if (!$prev || !in_array($tokens[$prev]['code'], [T_TRUE, T_FALSE])) {