Code Duplication    Length = 3-3 lines in 3 locations

filesystem/File.php 3 locations

@@ 917-919 (lines=3) @@
914
		if($size < 1024) {
915
			return $size . ' bytes';
916
		}
917
		if($size < 1024*10) {
918
			return (round($size/1024*10)/10). ' KB';
919
		}
920
		if($size < 1024*1024) {
921
			return round($size/1024) . ' KB';
922
		}
@@ 923-925 (lines=3) @@
920
		if($size < 1024*1024) {
921
			return round($size/1024) . ' KB';
922
		}
923
		if($size < 1024*1024*10) {
924
			return (round(($size/1024)/1024*10)/10) . ' MB';
925
		}
926
		if($size < 1024*1024*1024) {
927
			return round(($size/1024)/1024) . ' MB';
928
		}
@@ 926-928 (lines=3) @@
923
		if($size < 1024*1024*10) {
924
			return (round(($size/1024)/1024*10)/10) . ' MB';
925
		}
926
		if($size < 1024*1024*1024) {
927
			return round(($size/1024)/1024) . ' MB';
928
		}
929
		return round($size/(1024*1024*1024)*10)/10 . ' GB';
930
	}
931