Browse Source

Always return cache driver instance.

Taylor Otwell 13 years ago
parent
commit
6f26ce6e5f
1 changed files with 2 additions and 0 deletions
  1. 2 0
      system/cache.php

+ 2 - 0
system/cache.php

@@ -40,6 +40,8 @@ class Cache {
 					throw new \Exception("Cache driver [$driver] is not supported.");
 					throw new \Exception("Cache driver [$driver] is not supported.");
 			}
 			}
 		}
 		}
+
+		return static::$drivers[$driver];
 	}
 	}
 
 
 	/**
 	/**