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

modules/admin/admin.admin.model.php 2 locations

@@ 667-671 (lines=5) @@
664
			$skin_parse = explode('/', $val->directory->attrs->path);
665
			switch($skin_parse[1])
666
			{
667
				case 'themes' :
668
						$is_theme = TRUE;
669
						$module_name = $skin_parse[count($skin_parse) - 1];
670
						$skin_info->name = $theme_name . '|@|' . $module_name;
671
						break;
672
673
				case 'modules' :
674
						$is_theme = FALSE;
@@ 673-677 (lines=5) @@
670
						$skin_info->name = $theme_name . '|@|' . $module_name;
671
						break;
672
673
				case 'modules' :
674
						$is_theme = FALSE;
675
						$module_name = $skin_parse[2];
676
						$skin_info->name = $skin_parse[count($skin_parse) - 1];
677
						break;
678
679
			}
680
			$skin_info->path = $val->directory->attrs->path;