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

@@ 1998-2003 (lines=6) @@
1995
			FileHandler::writeFile($self->sslActionCacheFile, $buff);
1996
		}
1997
1998
		if(!isset($self->ssl_actions[$action]))
1999
		{
2000
			$self->ssl_actions[$action] = 1;
2001
			$sslActionCacheString = sprintf('$sslActions[\'%s\'] = 1;', $action);
2002
			FileHandler::writeFile($self->sslActionCacheFile, $sslActionCacheString, 'a');
2003
		}
2004
	}
2005
2006
	/**
@@ 2025-2030 (lines=6) @@
2022
2023
		foreach($action_array as $action)
2024
		{
2025
			if(!isset($self->ssl_actions[$action]))
2026
			{
2027
				$self->ssl_actions[$action] = 1;
2028
				$sslActionCacheString = sprintf('$sslActions[\'%s\'] = 1;', $action);
2029
				FileHandler::writeFile($self->sslActionCacheFile, $sslActionCacheString, 'a');
2030
			}
2031
		}
2032
	}
2033