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

modules/document/document.model.php 2 locations

@@ 1153-1157 (lines=5) @@
1150
			switch($search_target)
1151
			{
1152
				case 'title' :
1153
				case 'content' :
1154
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1155
					$args->{"s_".$search_target} = $search_keyword;
1156
					$use_division = true;
1157
					break;
1158
				case 'title_content' :
1159
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1160
					$args->s_title = $search_keyword;
@@ 1399-1403 (lines=5) @@
1396
			switch($search_target)
1397
			{
1398
				case 'title' :
1399
				case 'content' :
1400
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1401
					$args->{"s_".$search_target} = $search_keyword;
1402
					$use_division = true;
1403
					break;
1404
				case 'title_content' :
1405
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1406
					$args->s_title = $search_keyword;