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

classes/module/ModuleHandler.class.php 2 locations

@@ 442-447 (lines=6) @@
439
			$type = "mobile";
440
			// create a module instance
441
			$oModule = $this->getModuleInstance($this->module, $type, $kind);
442
			if(!is_object($oModule) || !method_exists($oModule, $this->act))
443
			{
444
				$type = $orig_type;
445
				Mobile::setMobile(FALSE);
446
				$oModule = $this->getModuleInstance($this->module, $type, $kind);
447
			}
448
		}
449
		else
450
		{
@@ 562-567 (lines=6) @@
559
					$type = "mobile";
560
					// create a module instance
561
					$oModule = $this->getModuleInstance($forward->module, $type, $kind);
562
					if(!is_object($oModule) || !method_exists($oModule, $this->act))
563
					{
564
						$type = $orig_type;
565
						Mobile::setMobile(FALSE);
566
						$oModule = $this->getModuleInstance($forward->module, $type, $kind);
567
					}
568
				}
569
				else
570
				{