Various code cleanup and fixed alignments.

This commit is contained in:
James Cole
2024-01-01 14:45:51 +01:00
parent f963ac63f1
commit f3773ebfc2
66 changed files with 460 additions and 460 deletions

View File

@@ -48,23 +48,23 @@ return [
|
*/
'stores' => [
'apc' => [
'stores' => [
'apc' => [
'driver' => 'apc',
],
'array' => [
'array' => [
'driver' => 'array',
'serialize' => false,
],
'database' => [
'database' => [
'driver' => 'database',
'table' => 'cache',
'connection' => null,
],
'file' => [
'file' => [
'driver' => 'file',
'path' => storage_path('framework/cache/data'),
],
@@ -88,11 +88,11 @@ return [
],
],
'redis' => [
'redis' => [
'driver' => 'redis',
'connection' => 'default',
],
'dynamodb' => [
'dynamodb' => [
'driver' => 'dynamodb',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
@@ -113,5 +113,5 @@ return [
|
*/
'prefix' => env('CACHE_PREFIX', 'firefly'),
'prefix' => env('CACHE_PREFIX', 'firefly'),
];