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

@@ 730-737 (lines=8) @@
727
					$args->s_user_name = $search_keyword;
728
					break;
729
730
				case 'nick_name' :
731
					if($search_keyword)
732
					{
733
						$search_keyword = str_replace(' ', '%', $search_keyword);
734
					}
735
736
					$args->s_nick_name = $search_keyword;
737
					break;
738
739
				case 'email_address' :
740
					if($search_keyword)
@@ 866-873 (lines=8) @@
863
864
					break;
865
866
				case 'nick_name' :
867
					if($search_keyword)
868
					{
869
						$search_keyword = str_replace(' ', '%', $search_keyword);
870
					}
871
872
					$args->s_nick_name = $search_keyword;
873
					break;
874
875
				case 'email_address' :
876
					if($search_keyword)

modules/point/point.model.php 1 location

@@ 154-157 (lines=4) @@
151
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
152
					$args->s_user_name = $search_keyword;
153
					break;
154
				case 'nick_name' :
155
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
156
					$args->s_nick_name = $search_keyword;
157
					break;
158
				case 'email_address' :
159
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
160
					$args->s_email_address = $search_keyword;