From 3adc2196f79fa4d8470d41d5a7584f2b0432a6fc Mon Sep 17 00:00:00 2001 From: Iman Date: Thu, 12 Nov 2020 17:25:54 +0330 Subject: [PATCH] Modify the cache.php docblocks (#5468) 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. --- config/cache.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/cache.php b/config/cache.php index 4f41fdf9..7d5976ed 100644 --- a/config/cache.php +++ b/config/cache.php @@ -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'), @@ -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' => [