Elgg\Cache\SimpleCache::init PHP Method

init() public method

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