Bolt\Configuration\Environment::checkVersion PHP Method

checkVersion() public method

Check Bolt's version against a cached key. If there is a change we flush the cache data and if required synchronise asset directories.
public checkVersion ( )
    public function checkVersion()
    {
        if ($this->checkCacheVersion()) {
            return;
        }
        $this->syncView();
        $this->cache->flushAll();
        $this->updateAutoloader();
        $this->updateCacheVersion();
    }