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

modules/syndication/syndication.model.php 2 locations

@@ 540-547 (lines=8) @@
537
		{
538
			$module_srl = $val->module_srl;
539
540
			if(!isset($module_info[$module_srl]))
541
			{
542
				$args = new stdClass;
543
				$args->module_srl = $module_srl;
544
				$module_output = executeQuery('syndication.getModuleSiteInfo', $args);
545
				if($module_output->data) $module_info[$module_srl] = $module_output->data;
546
				else $module_info[$module_srl] = null;
547
			}
548
549
			$val->id = $this->getID('article', $val->module_srl.'-'.$val->document_srl);
550
			$val->deleted = date("Y-m-d\\TH:i:s", ztime($val->regdate)).$time_zone;
@@ 567-573 (lines=7) @@
564
565
	function getChannelAlternativeHref($module_srl) {
566
		static $module_info = array();
567
		if(!isset($module_info[$module_srl])) {
568
			$args = new stdClass;
569
			$args->module_srl = $module_srl;
570
			$output = executeQuery('syndication.getModuleSiteInfo', $args);
571
			if($output->data) $module_info[$module_srl] = $output->data;
572
			else $module_info[$module_srl] = null;
573
		}
574
575
		if(is_null($module_info[$module_srl])) return $this->site_url;
576