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

component/admin/helpers/localise.php 3 locations

@@ 631-635 (lines=5) @@
628
629
		switch ($prefix)
630
		{
631
			case 'com':
632
				$lang->load($extension, constant('LOCALISEPATH_' . strtoupper($client)), null, false, true)
633
					|| $lang->load($extension, constant('LOCALISEPATH_' . strtoupper($client)) . "/components/$extension/", null, false, true);
634
635
				break;
636
637
			case 'mod':
638
				$lang->load($extension, constant('LOCALISEPATH_' . strtoupper($client)), null, false, true)
@@ 637-641 (lines=5) @@
634
635
				break;
636
637
			case 'mod':
638
				$lang->load($extension, constant('LOCALISEPATH_' . strtoupper($client)), null, false, true)
639
					|| $lang->load($extension, constant('LOCALISEPATH_' . strtoupper($client)) . "/modules/$extension/", null, false, true);
640
641
				break;
642
643
			case 'plg':
644
				$lang->load($extension, 'LOCALISEPATH_' . 'ADMINISTRATOR', null, false, true)
@@ 649-654 (lines=6) @@
646
647
				break;
648
649
			case 'tpl':
650
				$template = substr($extension, 4);
651
				$lang->load($extension, constant('LOCALISEPATH_' . strtoupper($client)), null, false, true)
652
					|| $lang->load($extension, constant('LOCALISEPATH_' . strtoupper($client)) . "/templates/$template/", null, false, true);
653
654
				break;
655
656
			case 'lib':
657
			case 'fil':