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

modules/editor/editor.model.php 2 locations

@@ 154-155 (lines=2) @@
151
		$buff .= sprintf('$xml_info->license_link = "%s";', $component_info->license_link);
152
153
		// Author information
154
		if(!is_array($xml_doc->component->author)) $author_list[] = $xml_doc->component->author;
155
		else $author_list = $xml_doc->component->author;
156
157
		for($i=0; $i < count($author_list); $i++)
158
		{
@@ 806-807 (lines=2) @@
803
804
		// Author information
805
		$author_list = array();
806
		if(!is_array($xml_doc->component->author)) $author_list[] = $xml_doc->component->author;
807
		else $author_list = $xml_doc->component->author;
808
809
		for($i = 0; $i < count($author_list); $i++)
810
		{