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 = 13-14 lines in 2 locations

modules/comment/comment.model.php 1 location

@@ 1073-1086 (lines=14) @@
1070
	 * @param int $count
1071
	 * @return object
1072
	 */
1073
	function getCommentListByMemberSrl($member_srl, $columnList = array(), $page = 0, $is_admin = FALSE, $count = 0)
1074
	{
1075
		$args = new stdClass();
1076
		$args->member_srl = $member_srl;
1077
		$args->list_count = $count;
1078
		$output = executeQuery('comment.getCommentListByMemberSrl', $args, $columnList);
1079
		$comment_list = $output->data;
1080
1081
		if(!$comment_list) return array();
1082
		if(!is_array($comment_list)) $comment_list = array($comment_list);
1083
1084
		return $comment_list;
1085
1086
	}
1087
1088
}
1089
/* End of file comment.model.php */

modules/document/document.model.php 1 location

@@ 1605-1617 (lines=13) @@
1602
	 * @param int $count
1603
	 * @return object
1604
	 */
1605
	function getDocumentListByMemberSrl($member_srl, $columnList = array(), $page = 0, $is_admin = FALSE, $count = 0 )
1606
	{
1607
		$args = new stdClass();
1608
		$args->member_srl = $member_srl;
1609
		$args->list_count = $count;
1610
		$output = executeQuery('document.getDocumentListByMemberSrl', $args, $columnList);
1611
		$document_list = $output->data;
1612
1613
		if(!$document_list) return array();
1614
		if(!is_array($document_list)) $document_list = array($document_list);
1615
1616
		return $document_list;
1617
	}
1618
1619
	/**
1620
	 * get to the document extra image path.