various refactoring and tweaks.
This commit is contained in:
2
laravel/cache/drivers/driver.php
vendored
2
laravel/cache/drivers/driver.php
vendored
@@ -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
|
||||
|
||||
4
laravel/cache/manager.php
vendored
4
laravel/cache/manager.php
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user