Browse Source

refactor cache driver method.

Taylor Otwell 13 years ago
parent
commit
16a1f89929
1 changed files with 3 additions and 8 deletions
  1. 3 8
      system/cache.php

+ 3 - 8
system/cache.php

@@ -30,23 +30,18 @@ class Cache {
 			switch ($driver)
 			{
 				case 'file':
-					static::$drivers[$driver] = new Cache\File;
-					break;
+					return static::$drivers[$driver] = new Cache\File;
 
 				case 'memcached':
-					static::$drivers[$driver] = new Cache\Memcached;
-					break;
+					return static::$drivers[$driver] = new Cache\Memcached;
 
 				case 'apc':
-					static::$drivers[$driver] = new Cache\APC;
-					break;
+					return static::$drivers[$driver] = new Cache\APC;
 
 				default:
 					throw new \Exception("Cache driver [$driver] is not supported.");
 			}
 		}
-
-		return static::$drivers[$driver];
 	}
 
 	/**