From da781adcbcb07741ae4a16ed9540cb70e2c8f0ed Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 21 Mar 2024 21:17:46 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Fixed=20code-style?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/cache.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/cache.php b/config/cache.php index 54fd655..6eba2a4 100644 --- a/config/cache.php +++ b/config/cache.php @@ -32,19 +32,19 @@ 'stores' => [ 'array' => [ - 'driver' => 'array', + 'driver' => 'array', 'serialize' => false, ], 'file' => [ - 'driver' => 'file', - 'path' => storage_path('framework/cache/data'), + 'driver' => 'file', + 'path' => storage_path('framework/cache/data'), 'lock_path' => storage_path('framework/cache/data'), ], 'redis' => [ - 'driver' => 'redis', - 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'), + 'driver' => 'redis', + 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'), 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'), ], ],