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/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()

modules/module/module.model.php 2 locations

@@ 1805-1810 (lines=6) @@
1802
				}
1803
				$extra_vars[$val->module_srl]->{$val->name} = $val->value;
1804
1805
				if($oCacheHandler->isSupport())
1806
				{
1807
					$object_key = 'module_extra_vars:'.$val->module_srl;
1808
					$cache_key = $oCacheHandler->getGroupKey('site_and_module', $object_key);
1809
					$oCacheHandler->put($cache_key, $extra_vars[$val->module_srl]);
1810
				}
1811
			}
1812
		}
1813
@@ 1975-1980 (lines=6) @@
1972
		$skin_vars = false;
1973
		// cache controll
1974
		$oCacheHandler = CacheHandler::getInstance('object', null, true);
1975
		if($oCacheHandler->isSupport())
1976
		{
1977
			$object_key = 'module_mobile_skin_vars:'.$module_info->module_srl;
1978
			$cache_key = $oCacheHandler->getGroupKey('site_and_module', $object_key);
1979
			$skin_vars = $oCacheHandler->get($cache_key);
1980
		}
1981
		if($skin_vars === false)
1982
		{
1983
			$args = new stdClass;