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

classes/context/Context.class.php 2 locations

@@ 2038-2043 (lines=6) @@
2035
			FileHandler::writeFile($self->sslActionCacheFile, $buff);
2036
		}
2037
2038
		if(!isset($self->ssl_actions[$action]))
2039
		{
2040
			$self->ssl_actions[$action] = 1;
2041
			$sslActionCacheString = sprintf('$sslActions[\'%s\'] = 1;', $action);
2042
			FileHandler::writeFile($self->sslActionCacheFile, $sslActionCacheString, 'a');
2043
		}
2044
	}
2045
2046
	/**
@@ 2065-2070 (lines=6) @@
2062
2063
		foreach($action_array as $action)
2064
		{
2065
			if(!isset($self->ssl_actions[$action]))
2066
			{
2067
				$self->ssl_actions[$action] = 1;
2068
				$sslActionCacheString = sprintf('$sslActions[\'%s\'] = 1;', $action);
2069
				FileHandler::writeFile($self->sslActionCacheFile, $sslActionCacheString, 'a');
2070
			}
2071
		}
2072
	}
2073