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-4 lines in 2 locations

modules/document/document.model.php 2 locations

@@ 1171-1174 (lines=4) @@
1168
				case 'user_name' :
1169
				case 'nick_name' :
1170
				case 'email_address' :
1171
				case 'homepage' :
1172
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1173
					$args->{"s_".$search_target} = $search_keyword;
1174
					break;
1175
				case 'is_notice' :
1176
				case 'is_secret' :
1177
					if($search_keyword=='N') $args->statusList = array($this->getConfigStatus('public'));
@@ 1418-1421 (lines=4) @@
1415
				case 'user_name' :
1416
				case 'nick_name' :
1417
				case 'email_address' :
1418
				case 'homepage' :
1419
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1420
					$args->{"s_".$search_target} = $search_keyword;
1421
					break;
1422
				case 'is_notice' :
1423
					if($search_keyword=='N') $args->{"s_".$search_target} = 'N';
1424
					elseif($search_keyword=='Y') $args->{"s_".$search_target} = 'Y';