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/module/module.model.php 2 locations

@@ 515-518 (lines=4) @@
512
513
		if($list === false)
514
		{
515
			if($oCacheHandler->isSupport() && count($args) === 1 && isset($args->site_srl))
516
			{
517
				$columnList = array();
518
			}
519
520
			$output = executeQuery('module.getMidList', $args, $columnList);
521
			if(!$output->toBool()) return $output;
@@ 524-527 (lines=4) @@
521
			if(!$output->toBool()) return $output;
522
			$list = $output->data;
523
524
			if($oCacheHandler->isSupport() && count($args) === 1 && isset($args->site_srl))
525
			{
526
				$oCacheHandler->put($cache_key, $list);
527
			}
528
		}
529
		if(!$list) return;
530