Remove default value from cache driver interface.

This commit is contained in:
Taylor Otwell
2011-07-07 07:39:26 -07:00
parent aaae1acb34
commit 3eeb69d1bf

View File

@@ -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.