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

classes/frontendfile/FrontEndFileHandler.class.php 2 locations

@@ 112-124 (lines=13) @@
109
110
			$this->_arrangeCssIndex($pathInfo['dirname'], $file);
111
		}
112
		else if($file->fileExtension == 'js')
113
		{
114
			if($args[1] == 'body')
115
			{
116
				$map = &$this->jsBodyMap;
117
				$mapIndex = &$this->jsBodyMapIndex;
118
			}
119
			else
120
			{
121
				$map = &$this->jsHeadMap;
122
				$mapIndex = &$this->jsHeadMapIndex;
123
			}
124
		}
125
126
		(is_null($file->index)) ? $file->index = 0 : $file->index = $file->index;
127
		if(!isset($mapIndex[$file->key]) || $mapIndex[$file->key] > $file->index)
@@ 318-327 (lines=10) @@
315
316
		$ignore = array('modernizr.js', 'common.js', 'js_app.js', 'xml2json.js', 'xml_handler.js', 'xml_js_filter.js');
317
318
		if($type == 'head')
319
		{
320
			$map = &$this->jsHeadMap;
321
			$mapIndex = &$this->jsHeadMapIndex;
322
		}
323
		else
324
		{
325
			$map = &$this->jsBodyMap;
326
			$mapIndex = &$this->jsBodyMapIndex;
327
		}
328
329
		$this->_sortMap($map, $mapIndex);
330