Browse Source

Remove default value from cache driver interface.

Taylor Otwell 13 years ago
parent
commit
3eeb69d1bf
1 changed files with 1 additions and 2 deletions
  1. 1 2
      system/cache/driver.php

+ 1 - 2
system/cache/driver.php

@@ -14,10 +14,9 @@ interface Driver {
 	 * Get an item from the cache.
 	 *
 	 * @param  string  $key
-	 * @param  mixed   $default
 	 * @return mixed
 	 */	
-	public function get($key, $default = null);
+	public function get($key);
 
 	/**
 	 * Write an item to the cache.