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

classes/context/Context.class.php 2 locations

@@ 1893-1900 (lines=8) @@
1890
		if($use_ssl)
1891
		{
1892
			$port = self::get('_https_port');
1893
			if($port && $port != 443)
1894
			{
1895
				$url_info['port'] = $port;
1896
			}
1897
			elseif($url_info['port'] == 443)
1898
			{
1899
				unset($url_info['port']);
1900
			}
1901
		}
1902
		else
1903
		{
@@ 1902-1913 (lines=12) @@
1899
				unset($url_info['port']);
1900
			}
1901
		}
1902
		else
1903
		{
1904
			$port = self::get('_http_port');
1905
			if($port && $port != 80)
1906
			{
1907
				$url_info['port'] = $port;
1908
			}
1909
			elseif($url_info['port'] == 80)
1910
			{
1911
				unset($url_info['port']);
1912
			}
1913
		}
1914
1915
		$url[$ssl_mode][$domain_key] = sprintf('%s://%s%s%s', $use_ssl ? 'https' : $url_info['scheme'], $url_info['host'], $url_info['port'] && $url_info['port'] != 80 ? ':' . $url_info['port'] : '', $url_info['path']);
1916