From 0f7b2f72cbee029a18a0b6ec128bc0734e364738 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 15 Aug 2011 14:25:59 -0500 Subject: [PATCH] Refactoring the cache class and its comments. --- system/cache.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/system/cache.php b/system/cache.php index 615e706b..b08344db 100644 --- a/system/cache.php +++ b/system/cache.php @@ -6,7 +6,6 @@ class Cache { * All of the active cache drivers. * * @var Cache\Driver - * @see driver */ public static $drivers = array(); @@ -86,9 +85,8 @@ public static function remember($key, $default, $minutes, $driver = null) /** * Pass all other methods to the default driver. * - * Passing method calls to the driver instance provides a better API for the - * developer. For instance, instead of saying Cache::driver()->foo(), we can - * just say Cache::foo(). + * Passing method calls to the driver instance provides a better API for you. + * For instance, instead of saying Cache::driver()->foo(), you can just say Cache::foo(). */ public static function __callStatic($method, $parameters) {