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/document/document.model.php 2 locations

@@ 1161-1165 (lines=5) @@
1158
					$args->s_title = $search_keyword;
1159
					$args->s_content = $search_keyword;
1160
					break;
1161
				case 'user_id' :
1162
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1163
					$args->s_user_id = $search_keyword;
1164
					$args->sort_index = 'documents.'.$args->sort_index;
1165
					break;
1166
				case 'user_name' :
1167
				case 'nick_name' :
1168
				case 'email_address' :
@@ 1408-1412 (lines=5) @@
1405
					$args->s_content = $search_keyword;
1406
					$use_division = true;
1407
					break;
1408
				case 'user_id' :
1409
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1410
					$args->s_user_id = $search_keyword;
1411
					$args->sort_index = 'documents.'.$args->sort_index;
1412
					break;
1413
				case 'user_name' :
1414
				case 'nick_name' :
1415
				case 'email_address' :

modules/comment/comment.model.php 1 location

@@ 724-733 (lines=10) @@
721
					$args->s_content = $search_keyword;
722
					break;
723
724
				case 'user_id' :
725
					if($search_keyword)
726
					{
727
						$search_keyword = str_replace(' ', '%', $search_keyword);
728
					}
729
730
					$args->s_user_id = $search_keyword;
731
					$query_id = 'comment.getTotalCommentListWithinMember';
732
					$args->sort_index = 'comments.list_order';
733
					break;
734
735
				case 'user_name' :
736
					if($search_keyword)