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

@@ 2029-2034 (lines=6) @@
2026
			FileHandler::writeFile($self->sslActionCacheFile, $buff);
2027
		}
2028
2029
		if(!isset($self->ssl_actions[$action]))
2030
		{
2031
			$self->ssl_actions[$action] = 1;
2032
			$sslActionCacheString = sprintf('$sslActions[\'%s\'] = 1;', $action);
2033
			FileHandler::writeFile($self->sslActionCacheFile, $sslActionCacheString, 'a');
2034
		}
2035
	}
2036
2037
	/**
@@ 2056-2061 (lines=6) @@
2053
2054
		foreach($action_array as $action)
2055
		{
2056
			if(!isset($self->ssl_actions[$action]))
2057
			{
2058
				$self->ssl_actions[$action] = 1;
2059
				$sslActionCacheString = sprintf('$sslActions[\'%s\'] = 1;', $action);
2060
				FileHandler::writeFile($self->sslActionCacheFile, $sslActionCacheString, 'a');
2061
			}
2062
		}
2063
	}
2064