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

classes/context/Context.class.php 2 locations

@@ 673-677 (lines=5) @@
670
			{
671
				$url = base64_decode(self::get('url'));
672
				$url_info = parse_url($url);
673
				if(!Password::checkSignature($url, self::get('sig')))
674
				{
675
					echo self::get('lang')->msg_invalid_request;
676
					return false;
677
				}
678
679
				$url_info['query'].= ($url_info['query'] ? '&' : '') . 'SSOID=' . urlencode(session_id()) . '&sig=' . urlencode(Password::createSignature(session_id()));
680
				$redirect_url = sprintf('%s://%s%s%s?%s', $url_info['scheme'], $url_info['host'], $url_info['port'] ? ':' . $url_info['port'] : '', $url_info['path'], $url_info['query']);
@@ 692-696 (lines=5) @@
689
			// result handling : set session_name()
690
			if($session_name = self::get('SSOID'))
691
			{
692
				if(!Password::checkSignature($session_name, self::get('sig')))
693
				{
694
					echo self::get('lang')->msg_invalid_request;
695
					return false;
696
				}
697
				
698
				setcookie(session_name(), $session_name);
699