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

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