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

modules/menu/menu.admin.controller.php 2 locations

@@ 335-343 (lines=9) @@
332
			if($itemInfo->is_shortcut != 'Y' && strncasecmp('http', $itemInfo->url, 4) !== 0)
333
			{
334
				$moduleInfo = $oModuleModel->getModuleInfoByMid($itemInfo->url, $menuInfo->site_srl);
335
				if($moduleInfo->module_srl)
336
				{
337
					$output = $oModuleController->onlyDeleteModule($moduleInfo->module_srl);
338
					if(!$output->toBool())
339
					{
340
						$oDB->rollback();
341
						return $output;
342
					}
343
				}
344
			}
345
		}
346
@@ 980-988 (lines=9) @@
977
			}
978
979
			$moduleInfo = $oModuleModel->getModuleInfoByMid($node['url'], $menuInfo->site_srl);
980
			if($moduleInfo->module_srl)
981
			{
982
				$output = $oModuleController->onlyDeleteModule($moduleInfo->module_srl);
983
				if(!$output->toBool())
984
				{
985
					$oDB->rollback();
986
					return $output;
987
				}
988
			}
989
		}
990
		return new Object(0, 'success');
991
	}