Added missing "cron_interval" default value

This commit is contained in:
Michael 2019-04-10 06:41:57 +00:00
parent 20bc12157e
commit 2711284827
2 changed files with 4 additions and 3 deletions

View file

@ -72,6 +72,10 @@ return [
// Deny public access to the local user directory.
'block_local_dir' => false,
// cron_interval (Integer)
// Minimal period in minutes between two calls of the "Cron" worker job.
'cron_interval' => 5,
// cache_driver (database|memcache|memcached|redis)
// Whether to use Memcache or Memcached or Redis to store temporary cache.
'cache_driver' => 'database',