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

@@ 182-184 (lines=3) @@
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])) {
183
			return null;
184
		}
185
186
		return $previous;
187
	}
@@ 203-205 (lines=3) @@
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])) {
204
			return null;
205
		}
206
207
		return $next;
208
	}