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 = 11-12 lines in 2 locations

modules/module/module.model.php 2 locations

@@ 379-390 (lines=12) @@
376
			$mid_info = $oCacheHandler->get($cache_key);
377
		}
378
379
		if($mid_info === false)
380
		{
381
			// Get data
382
			$args = new stdClass();
383
			$args->module_srl = $module_srl;
384
			$output = executeQuery('module.getMidInfo', $args);
385
			if(!$output->toBool()) return;
386
387
			$mid_info = $output->data;
388
			$this->applyDefaultSkin($mid_info);
389
			if($oCacheHandler->isSupport()) $oCacheHandler->put($cache_key, $mid_info);
390
		}
391
392
		if($mid_info && count($columnList))
393
		{
@@ 1956-1966 (lines=11) @@
1953
			$cache_key = $oCacheHandler->getGroupKey('site_and_module', $object_key);
1954
			$skin_vars = $oCacheHandler->get($cache_key);
1955
		}
1956
		if($skin_vars === false)
1957
		{
1958
			$args = new stdClass;
1959
			$args->module_srl = $module_info->module_srl;
1960
			$output = executeQueryArray('module.getModuleMobileSkinVars',$args);
1961
			if(!$output->toBool()) return;
1962
			$skin_vars = $output->data;
1963
1964
			//insert in cache
1965
			if($oCacheHandler->isSupport()) $oCacheHandler->put($cache_key, $skin_vars);
1966
		}
1967
		if(!$skin_vars) return;
1968
1969
		foreach($output->data as $val)