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

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

@@ 890-893 (lines=4) @@
887
		$result  = array('removed' => array());
888
		
889
		foreach ($targets as $target) {
890
			if (($volume = $this->volume($target)) == false) {
891
				$result['warning'] = $this->error(self::ERROR_RM, '#'.$target, self::ERROR_FILE_NOT_FOUND);
892
				return $result;
893
			}
894
			if (!$volume->rm($target)) {
895
				$result['warning'] = $this->error($volume->error());
896
				return $result;
@@ 971-974 (lines=4) @@
968
		}
969
		
970
		foreach ($targets as $target) {
971
			if (($srcVolume = $this->volume($target)) == false) {
972
				$result['warning'] = $this->error($error, '#'.$target, self::ERROR_FILE_NOT_FOUND);
973
				break;
974
			}
975
			
976
			if (($file = $dstVolume->paste($srcVolume, $target, $dst, $cut)) == false) {
977
				$result['warning'] = $this->error($dstVolume->error());