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

modules/install/install.controller.php 2 locations

@@ 520-530 (lines=11) @@
517
		{
518
			if(count($modules[$category]))
519
			{
520
				foreach($modules[$category] as $module)
521
				{
522
					if($module == 'module') continue;
523
					$this->installModule($module, sprintf('./modules/%s', $module));
524
525
					$oModule = getClass($module);
526
					if(is_object($oModule) && method_exists($oModule, 'checkUpdate'))
527
					{
528
						if($oModule->checkUpdate()) $oModule->moduleUpdate();
529
					}
530
				}
531
				unset($modules[$category]);
532
			}
533
		}
@@ 541-551 (lines=11) @@
538
			{
539
				if(count($module_list))
540
				{
541
					foreach($module_list as $module)
542
					{
543
						if($module == 'module') continue;
544
						$this->installModule($module, sprintf('./modules/%s', $module));
545
546
						$oModule = getClass($module);
547
						if($oModule && method_exists($oModule, 'checkUpdate') && method_exists($oModule, 'moduleUpdate'))
548
						{
549
							if($oModule->checkUpdate()) $oModule->moduleUpdate();
550
						}
551
					}
552
				}
553
			}
554
		}