Browse Source

Tweak file cache driver to return null as default.

Taylor Otwell 13 years ago
parent
commit
577066e07e
1 changed files with 3 additions and 6 deletions
  1. 3 6
      system/cache/driver/file.php

+ 3 - 6
system/cache/driver/file.php

@@ -27,7 +27,7 @@ class File implements \System\Cache\Driver {
 	 * @param  mixed   $default
 	 * @return mixed
 	 */	
-	public function get($key, $default = null)
+	public function get($key)
 	{
 		if (array_key_exists($key, $this->items))
 		{
@@ -36,17 +36,14 @@ class File implements \System\Cache\Driver {
 
 		if ( ! file_exists(APP_PATH.'storage/cache/'.$key))
 		{
-			return is_callable($default) ? call_user_func($default) : $default;
+			return null;
 		}
 
 		$cache = file_get_contents(APP_PATH.'storage/cache/'.$key);
 
-		// Has the cache expired? The UNIX expiration time is stored at the beginning of the file.
 		if (time() >= substr($cache, 0, 10))
 		{
-			$this->forget($key);
-
-			return is_callable($default) ? call_user_func($default) : $default;
+			return $this->forget($key);
 		}
 
 		return $this->items[$key] = unserialize(substr($cache, 10));