Code Duplication    Length = 2-2 lines in 2 locations

micro/cache/system/ApcuCache.php 1 location

@@ 117-118 (lines=2) @@
114
				$result[]=new CacheFile(\ucfirst($type),$key,$entry['creation_time'],$entry['mem_size'],$key);
115
			}
116
		}
117
		if(\sizeof($result)===0)
118
			$result[]=new CacheFile(\ucfirst($type),"","","");
119
		return $result;
120
	}
121

micro/cache/system/PhpFastCacheDriver.php 1 location

@@ 111-112 (lines=2) @@
108
			$key=$entry->getKey();
109
			$result[]=new CacheFile(\ucfirst($type),$key,$entry->getCreationDate()->getTimestamp(),"",$key);
110
		}
111
		if(\sizeof($result)===0)
112
			$result[]=new CacheFile(\ucfirst($type),"","","");
113
		return $result;
114
	}
115