16 lines
487 B
PHP
16 lines
487 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Toolbar cache
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Controls caching behaviour for the per-user toolbar counters. Value is
|
|
| the TTL in seconds. Use the environment variable
|
|
| TOOLBAR_CACHE_TTL_SECONDS to override in each environment.
|
|
|
|
|
*/
|
|
'cache_ttl_seconds' => env('TOOLBAR_CACHE_TTL_SECONDS', 30),
|
|
];
|