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

modules/comment/comment.item.php 1 location

@@ 473-487 (lines=15) @@
470
	 * Return author's profile image
471
	 * @return object
472
	 */
473
	function getProfileImage()
474
	{
475
		if(!$this->isExists() || !$this->get('member_srl'))
476
		{
477
			return;
478
		}
479
		$oMemberModel = getModel('member');
480
		$profile_info = $oMemberModel->getProfileImage($this->get('member_srl'));
481
		if(!$profile_info)
482
		{
483
			return;
484
		}
485
486
		return $profile_info->src;
487
	}
488
489
	/**
490
	 * Return author's signiture

modules/document/document.item.php 1 location

@@ 1080-1088 (lines=9) @@
1077
	 * Return author's profile image
1078
	 * @return string
1079
	 */
1080
	function getProfileImage()
1081
	{
1082
		if(!$this->isExists() || !$this->get('member_srl')) return;
1083
		$oMemberModel = getModel('member');
1084
		$profile_info = $oMemberModel->getProfileImage($this->get('member_srl'));
1085
		if(!$profile_info) return;
1086
1087
		return $profile_info->src;
1088
	}
1089
1090
	/**
1091
	 * Return author's signiture