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

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