mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-21 08:34:29 -06:00
11 lines
272 B
PHP
11 lines
272 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'cache-prefix' => '',
|
|
'enabled' => env('MODEL_CACHE_ENABLED', false),
|
|
'use-database-keying' => env('MODEL_CACHE_USE_DATABASE_KEYING', true),
|
|
'store' => env('MODEL_CACHE_STORE'),
|
|
];
|