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
1 changed files with 1 additions and 2 deletions

View File

@ -14,10 +14,9 @@ public function has($key);
* 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.