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

protected/extensions/elFinder/php/elFinderVolumeFTP.class.php 2 locations

@@ 993-997 (lines=5) @@
990
			
991
		$process = proc_open($command, $descriptorspec, $pipes, $cwd);
992
993
		if (is_resource($process)) {
994
			fclose($pipes[0]);
995
			fclose($pipes[1]);
996
			$return_value = proc_close($process);
997
		}
998
999
		unlink($basename);
1000
		$filesToProcess = elFinderVolumeFTP::listFilesInDirectory($tmpDir, true);
@@ 1113-1117 (lines=5) @@
1110
			
1111
		$process = proc_open($command, $descriptorspec, $pipes, $cwd);
1112
1113
		if (is_resource($process)) {
1114
			fclose($pipes[0]);
1115
			fclose($pipes[1]);
1116
			$return_value = proc_close($process);
1117
		}
1118
1119
		$remoteArchiveFile = $dir . DIRECTORY_SEPARATOR . $name;
1120