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

@@ 1118-1126 (lines=9) @@
1115
	 * Return author's profile image
1116
	 * @return string
1117
	 */
1118
	function getProfileImage()
1119
	{
1120
		if(!$this->isExists() || !$this->get('member_srl')) return;
1121
		$oMemberModel = getModel('member');
1122
		$profile_info = $oMemberModel->getProfileImage($this->get('member_srl'));
1123
		if(!$profile_info) return;
1124
1125
		return $profile_info->src;
1126
	}
1127
1128
	/**
1129
	 * Return author's signiture