Commit 3eeb69d1 by Taylor Otwell

Remove default value from cache driver interface.

parent aaae1acb
...@@ -14,10 +14,9 @@ interface Driver { ...@@ -14,10 +14,9 @@ interface Driver {
* Get an item from the cache. * Get an item from the cache.
* *
* @param string $key * @param string $key
* @param mixed $default
* @return mixed * @return mixed
*/ */
public function get($key, $default = null); public function get($key);
/** /**
* Write an item to the cache. * Write an item to the cache.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment