From 3eeb69d1bf642eb35883e60362ff373d0783601a Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 7 Jul 2011 07:39:26 -0700 Subject: [PATCH] Remove default value from cache driver interface. --- system/cache/driver.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/system/cache/driver.php b/system/cache/driver.php index 0c9fb375..69a93289 100644 --- a/system/cache/driver.php +++ b/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.