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

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