various refactoring and tweaks.

This commit is contained in:
Taylor Otwell
2011-10-20 21:44:18 -05:00
parent df9130dafa
commit af36cb3d5a
22 changed files with 140 additions and 110 deletions

View File

@@ -61,7 +61,7 @@ abstract class Driver {
* cache, store the default value in the cache and return it.
*
* <code>
* // Get an item from the cache, or cache a value for 15 minutes if it doesn't exist
* // Get an item from the cache, or cache a value for 15 minutes
* $name = Cache::remember('name', 'Taylor', 15);
*
* // Use a closure for deferred execution

View File

@@ -12,8 +12,8 @@ class Manager {
/**
* Get a cache driver instance.
*
* If no driver name is specified, the default cache driver will be
* returned as defined in the cache configuration file.
* If no driver name is specified, the default cache driver will
* be returned as defined in the cache configuration file.
*
* <code>
* // Get the default cache driver instance