mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-11-03 20:55:05 +00: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'),
 | 
						|
];
 |