Elgg\Cache\SimpleCache::init PHP Метод

init() публичный Метод

Set up config appropriately on engine boot.
public init ( ) : void
Результат void
    function init()
    {
        $lastcache = $this->config->get('lastcache');
        if (!defined('UPGRADING') && empty($lastcache)) {
            $this->config->set('lastcache', (int) $this->config->get('simplecache_lastupdate'));
        }
    }