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

component/admin/helpers/localise.php 3 locations

@@ 567-570 (lines=4) @@
564
565
			switch (substr($extension, 0, 3))
566
			{
567
				case 'com':
568
					$path = constant('LOCALISEPATH_' . strtoupper($client)) . "/components/$extension/language/$tag/$tag.$filename.ini";
569
570
					break;
571
572
				case 'mod':
573
					$path = constant('LOCALISEPATH_' . strtoupper($client)) . "/modules/$extension/language/$tag/$tag.$filename.ini";
@@ 572-575 (lines=4) @@
569
570
					break;
571
572
				case 'mod':
573
					$path = constant('LOCALISEPATH_' . strtoupper($client)) . "/modules/$extension/language/$tag/$tag.$filename.ini";
574
575
					break;
576
577
				case 'plg':
578
					$parts  = explode('_', $extension);
@@ 587-591 (lines=5) @@
584
585
					break;
586
587
				case 'tpl':
588
					$template = substr($extension, 4);
589
					$path     = constant('LOCALISEPATH_' . strtoupper($client)) . "/templates/$template/language/$tag/$tag.$filename.ini";
590
591
					break;
592
593
				case 'lib':
594
					$path = constant('LOCALISEPATH_' . strtoupper($client)) . "/language/$tag/$tag.$filename.ini";