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

@@ 1577-1589 (lines=13) @@
1574
	 * @param int $count
1575
	 * @return object
1576
	 */
1577
	function getDocumentListByMemberSrl($member_srl, $columnList = array(), $page = 0, $is_admin = FALSE, $count = 0 )
1578
	{
1579
		$args = new stdClass();
1580
		$args->member_srl = $member_srl;
1581
		$args->list_count = $count;
1582
		$output = executeQuery('document.getDocumentListByMemberSrl', $args, $columnList);
1583
		$document_list = $output->data;
1584
1585
		if(!$document_list) return array();
1586
		if(!is_array($document_list)) $document_list = array($document_list);
1587
1588
		return $document_list;
1589
	}
1590
1591
	/**
1592
	 * get to the document extra image path.