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

@@ 1158-1161 (lines=4) @@
1155
				case 'user_name' :
1156
				case 'nick_name' :
1157
				case 'email_address' :
1158
				case 'homepage' :
1159
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1160
					$args->{"s_".$search_target} = $search_keyword;
1161
					break;
1162
				case 'is_notice' :
1163
				case 'is_secret' :
1164
					if($search_keyword=='N') $args->statusList = array($this->getConfigStatus('public'));
@@ 1404-1407 (lines=4) @@
1401
				case 'user_name' :
1402
				case 'nick_name' :
1403
				case 'email_address' :
1404
				case 'homepage' :
1405
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1406
					$args->{"s_".$search_target} = $search_keyword;
1407
					break;
1408
				case 'is_notice' :
1409
					if($search_keyword=='N') $args->{"s_".$search_target} = 'N';
1410
					elseif($search_keyword=='Y') $args->{"s_".$search_target} = 'Y';