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 = 5-10 lines in 3 locations

modules/comment/comment.model.php 1 location

@@ 710-719 (lines=10) @@
707
					$args->s_content = $search_keyword;
708
					break;
709
710
				case 'user_id' :
711
					if($search_keyword)
712
					{
713
						$search_keyword = str_replace(' ', '%', $search_keyword);
714
					}
715
716
					$args->s_user_id = $search_keyword;
717
					$query_id = 'comment.getTotalCommentListWithinMember';
718
					$args->sort_index = 'comments.list_order';
719
					break;
720
721
				case 'user_name' :
722
					if($search_keyword)

modules/document/document.model.php 2 locations

@@ 1154-1158 (lines=5) @@
1151
					$args->s_title = $search_keyword;
1152
					$args->s_content = $search_keyword;
1153
					break;
1154
				case 'user_id' :
1155
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1156
					$args->s_user_id = $search_keyword;
1157
					$args->sort_index = 'documents.'.$args->sort_index;
1158
					break;
1159
				case 'user_name' :
1160
				case 'nick_name' :
1161
				case 'email_address' :
@@ 1400-1404 (lines=5) @@
1397
					$args->s_content = $search_keyword;
1398
					$use_division = true;
1399
					break;
1400
				case 'user_id' :
1401
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1402
					$args->s_user_id = $search_keyword;
1403
					$args->sort_index = 'documents.'.$args->sort_index;
1404
					break;
1405
				case 'user_name' :
1406
				case 'nick_name' :
1407
				case 'email_address' :