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

@@ 1980-1985 (lines=6) @@
1977
			FileHandler::writeFile($self->sslActionCacheFile, $buff);
1978
		}
1979
1980
		if(!isset($self->ssl_actions[$action]))
1981
		{
1982
			$self->ssl_actions[$action] = 1;
1983
			$sslActionCacheString = sprintf('$sslActions[\'%s\'] = 1;', $action);
1984
			FileHandler::writeFile($self->sslActionCacheFile, $sslActionCacheString, 'a');
1985
		}
1986
	}
1987
1988
	/**
@@ 2007-2012 (lines=6) @@
2004
2005
		foreach($action_array as $action)
2006
		{
2007
			if(!isset($self->ssl_actions[$action]))
2008
			{
2009
				$self->ssl_actions[$action] = 1;
2010
				$sslActionCacheString = sprintf('$sslActions[\'%s\'] = 1;', $action);
2011
				FileHandler::writeFile($self->sslActionCacheFile, $sslActionCacheString, 'a');
2012
			}
2013
		}
2014
	}
2015