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/layout/layout.admin.controller.php 1 location

@@ 155-158 (lines=4) @@
152
					if($output->data)
153
					{
154
						$modules = array();
155
						for($i=0;$i<count($output->data);$i++)
156
						{
157
							$modules[] = $output->data[$i]->module_srl;
158
						}
159
160
						if(count($modules))
161
						{

modules/module/module.model.php 1 location

@@ 441-444 (lines=4) @@
438
		$count = count($output->data);
439
440
		$modules = array();
441
		for($i=0;$i<$count;$i++)
442
		{
443
			$modules[] = $output->data[$i];
444
		}
445
		return $this->addModuleExtraVars($modules);
446
	}
447