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

@@ 1162-1165 (lines=4) @@
1159
				case 'user_name' :
1160
				case 'nick_name' :
1161
				case 'email_address' :
1162
				case 'homepage' :
1163
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1164
					$args->{"s_".$search_target} = $search_keyword;
1165
					break;
1166
				case 'is_notice' :
1167
				case 'is_secret' :
1168
					if($search_keyword=='N') $args->statusList = array($this->getConfigStatus('public'));
@@ 1408-1411 (lines=4) @@
1405
				case 'user_name' :
1406
				case 'nick_name' :
1407
				case 'email_address' :
1408
				case 'homepage' :
1409
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1410
					$args->{"s_".$search_target} = $search_keyword;
1411
					break;
1412
				case 'is_notice' :
1413
					if($search_keyword=='N') $args->{"s_".$search_target} = 'N';
1414
					elseif($search_keyword=='Y') $args->{"s_".$search_target} = 'Y';