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

@@ 1144-1148 (lines=5) @@
1141
			switch($search_target)
1142
			{
1143
				case 'title' :
1144
				case 'content' :
1145
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1146
					$args->{"s_".$search_target} = $search_keyword;
1147
					$use_division = true;
1148
					break;
1149
				case 'title_content' :
1150
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1151
					$args->s_title = $search_keyword;
@@ 1389-1393 (lines=5) @@
1386
			switch($search_target)
1387
			{
1388
				case 'title' :
1389
				case 'content' :
1390
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1391
					$args->{"s_".$search_target} = $search_keyword;
1392
					$use_division = true;
1393
					break;
1394
				case 'title_content' :
1395
					if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword);
1396
					$args->s_title = $search_keyword;