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 = 4-8 lines in 3 locations

modules/point/point.model.php 1 location

@@ 177-180 (lines=4) @@
174
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
175
					$args->s_user_name = $search_keyword;
176
					break;
177
				case 'nick_name' :
178
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
179
					$args->s_nick_name = $search_keyword;
180
					break;
181
				case 'email_address' :
182
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
183
					$args->s_email_address = $search_keyword;

modules/comment/comment.model.php 2 locations

@@ 744-751 (lines=8) @@
741
					$args->s_user_name = $search_keyword;
742
					break;
743
744
				case 'nick_name' :
745
					if($search_keyword)
746
					{
747
						$search_keyword = str_replace(' ', '%', $search_keyword);
748
					}
749
750
					$args->s_nick_name = $search_keyword;
751
					break;
752
753
				case 'email_address' :
754
					if($search_keyword)
@@ 880-887 (lines=8) @@
877
878
					break;
879
880
				case 'nick_name' :
881
					if($search_keyword)
882
					{
883
						$search_keyword = str_replace(' ', '%', $search_keyword);
884
					}
885
886
					$args->s_nick_name = $search_keyword;
887
					break;
888
889
				case 'email_address' :
890
					if($search_keyword)