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

component/admin/models/packagefile.php 1 location

@@ 796-801 (lines=6) @@
793
794
		$text .= "\t" . '</fileset>' . "\n";
795
796
		if (!empty($data['serverurl']))
797
		{
798
			$text .= "\t" . '<updateservers>' . "\n";
799
			$text .= "\t\t" . '<server type="collection" priority="1" name="' . $data['servername'] . '">' . $data['serverurl'] . '</server>' . "\n";
800
			$text .= "\t" . '</updateservers>' . "\n";
801
		}
802
803
		$text .= '</extension>' . "\n";
804

component/admin/models/package.php 1 location

@@ 1040-1045 (lines=6) @@
1037
1038
		$text .= "\t" . '</files>' . "\n";
1039
1040
		if (!empty($data['serverurl']))
1041
		{
1042
			$text .= "\t" . '<updateservers>' . "\n";
1043
			$text .= "\t\t" . '<server type="collection" priority="1" name="' . $data['servername'] . '">' . $data['serverurl'] . '</server>' . "\n";
1044
			$text .= "\t" . '</updateservers>' . "\n";
1045
		}
1046
1047
		$text .= '</extension>' . "\n";
1048