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

@@ 1140-1144 (lines=5) @@
1137
			switch($search_target)
1138
			{
1139
				case 'title' :
1140
				case 'content' :
1141
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1142
					$args->{"s_".$search_target} = $search_keyword;
1143
					$use_division = true;
1144
					break;
1145
				case 'title_content' :
1146
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1147
					$args->s_title = $search_keyword;
@@ 1385-1389 (lines=5) @@
1382
			switch($search_target)
1383
			{
1384
				case 'title' :
1385
				case 'content' :
1386
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1387
					$args->{"s_".$search_target} = $search_keyword;
1388
					$use_division = true;
1389
					break;
1390
				case 'title_content' :
1391
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1392
					$args->s_title = $search_keyword;