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
		{
@@ 773-774 (lines=2) @@
770
771
		// Author information
772
		$author_list = array();
773
		if(!is_array($xml_doc->component->author)) $author_list[] = $xml_doc->component->author;
774
		else $author_list = $xml_doc->component->author;
775
776
		for($i = 0; $i < count($author_list); $i++)
777
		{