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

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