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/document/document.model.php 1 location

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

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 */