Code Duplication    Length = 3-3 lines in 2 locations

php/elFinderVolumeDriver.class.php 2 locations

@@ 2037-2039 (lines=3) @@
2034
2035
		switch($mode) {
2036
			
2037
			case 'propresize':
2038
				$result = $this->imgResize($work_path, $width, $height, true, true, null, $jpgQuality);
2039
				break;
2040
2041
			case 'crop':
2042
				$result = $this->imgCrop($work_path, $width, $height, $x, $y, null, $jpgQuality);
@@ 2053-2055 (lines=3) @@
2050
				$result = $this->imgRotate($work_path, $degree, ($bg ? $bg : $this->options['tmbBgColor']), null, $jpgQuality);
2051
				break;
2052
2053
			default:
2054
				$result = $this->imgResize($work_path, $width, $height, false, true, null, $jpgQuality);
2055
				break;
2056
		}
2057
		
2058
		$ret = false;