Skip to content

Commit

Permalink
Modify the cache.php docblocks (laravel#5468)
Browse files Browse the repository at this point in the history
In new versions of laravel we do not directly specify the "cache driver" anymore but rather a "cache store", so it does not make sense to mention the drivers up there since laravel supports any arbitrary values defined below it by the user.
  • Loading branch information
imanghafoori1 authored Nov 12, 2020
1 parent 1ad5a8d commit 3adc219
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
| using this caching library. This connection is used when another is
| not explicitly specified when executing a given caching function.
|
| Supported: "apc", "array", "database", "file",
| "memcached", "redis", "dynamodb"
|
*/

'default' => env('CACHE_DRIVER', 'file'),
Expand All @@ -29,6 +26,9 @@
| well as their drivers. You may even define multiple stores for the
| same cache driver to group types of items stored in your caches.
|
| Supported drivers: "apc", "array", "database", "file",
| "memcached", "redis", "dynamodb"
|
*/

'stores' => [
Expand Down

0 comments on commit 3adc219

Please sign in to comment.