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

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