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 3 locations

modules/module/module.model.php 2 locations

@@ 1780-1785 (lines=6) @@
1777
				}
1778
				$extra_vars[$val->module_srl]->{$val->name} = $val->value;
1779
1780
				if($oCacheHandler->isSupport())
1781
				{
1782
					$object_key = 'module_extra_vars:'.$val->module_srl;
1783
					$cache_key = $oCacheHandler->getGroupKey('site_and_module', $object_key);
1784
					$oCacheHandler->put($cache_key, $extra_vars[$val->module_srl]);
1785
				}
1786
			}
1787
		}
1788
@@ 1950-1955 (lines=6) @@
1947
		$skin_vars = false;
1948
		// cache controll
1949
		$oCacheHandler = CacheHandler::getInstance('object', null, true);
1950
		if($oCacheHandler->isSupport())
1951
		{
1952
			$object_key = 'module_mobile_skin_vars:'.$module_info->module_srl;
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;

modules/page/page.admin.controller.php 1 location

@@ 286-291 (lines=6) @@
283
		}
284
285
		$oCacheHandler = CacheHandler::getInstance('object', null, true);
286
		if($oCacheHandler->isSupport())
287
		{
288
			$object_key = 'mid_info:' . $module_info->module_srl;
289
			$cache_key = $oCacheHandler->getGroupKey('site_and_module', $object_key);
290
			$oCacheHandler->delete($cache_key);
291
		}
292
	}
293
294
	function procPageAdminArticleDocumentInsert()