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

@@ 1129-1137 (lines=9) @@
1126
	 * Return author's profile image
1127
	 * @return string
1128
	 */
1129
	function getProfileImage()
1130
	{
1131
		if(!$this->isExists() || !$this->get('member_srl')) return;
1132
		$oMemberModel = getModel('member');
1133
		$profile_info = $oMemberModel->getProfileImage($this->get('member_srl'));
1134
		if(!$profile_info) return;
1135
1136
		return $profile_info->src;
1137
	}
1138
1139
	/**
1140
	 * Return author's signiture