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

modules/document/document.item.php 2 locations

@@ 651-662 (lines=12) @@
648
		return $oDocumentModel->getExtraVars($this->get('module_srl'), $this->document_srl);
649
	}
650
651
	function getExtraValue($idx)
652
	{
653
		$extra_vars = $this->getExtraVars();
654
		if(is_array($extra_vars) && array_key_exists($idx,$extra_vars))
655
		{
656
			return $extra_vars[$idx]->getValue();
657
		}
658
		else
659
		{
660
			return '';
661
		}
662
	}
663
664
	function getExtraValueHTML($idx)
665
	{
@@ 664-675 (lines=12) @@
661
		}
662
	}
663
664
	function getExtraValueHTML($idx)
665
	{
666
		$extra_vars = $this->getExtraVars();
667
		if(is_array($extra_vars) && array_key_exists($idx,$extra_vars))
668
		{
669
			return $extra_vars[$idx]->getValueHTML();
670
		}
671
		else
672
		{
673
			return '';
674
		}
675
	}
676
677
	function getExtraEidValue($eid)
678
	{