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

@@ 1059-1072 (lines=14) @@
1056
	 * @param int $count
1057
	 * @return object
1058
	 */
1059
	function getCommentListByMemberSrl($member_srl, $columnList = array(), $page = 0, $is_admin = FALSE, $count = 0)
1060
	{
1061
		$args = new stdClass();
1062
		$args->member_srl = $member_srl;
1063
		$args->list_count = $count;
1064
		$output = executeQuery('comment.getCommentListByMemberSrl', $args, $columnList);
1065
		$comment_list = $output->data;
1066
1067
		if(!$comment_list) return array();
1068
		if(!is_array($comment_list)) $comment_list = array($comment_list);
1069
1070
		return $comment_list;
1071
1072
	}
1073
1074
}
1075
/* End of file comment.model.php */

modules/document/document.model.php 1 location

@@ 1573-1585 (lines=13) @@
1570
	 * @param int $count
1571
	 * @return object
1572
	 */
1573
	function getDocumentListByMemberSrl($member_srl, $columnList = array(), $page = 0, $is_admin = FALSE, $count = 0 )
1574
	{
1575
		$args = new stdClass();
1576
		$args->member_srl = $member_srl;
1577
		$args->list_count = $count;
1578
		$output = executeQuery('document.getDocumentListByMemberSrl', $args, $columnList);
1579
		$document_list = $output->data;
1580
		
1581
		if(!$document_list) return array();
1582
		if(!is_array($document_list)) $document_list = array($document_list);
1583
1584
		return $document_list;	
1585
	}
1586
}
1587
/* End of file document.model.php */
1588
/* Location: ./modules/document/document.model.php */