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

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