Merge branch '4.6' into 4

This commit is contained in:
Steve Boyd 2020-08-05 10:52:49 +12:00
commit 65c3295917

View File

@ -164,9 +164,17 @@ class DatabaseAdapterRegistry implements Flushable
if (isset($_GET['flush'])) { if (isset($_GET['flush'])) {
static::flush(); static::flush();
} }
$cache = static::getCache(); try {
$cache = static::getCache();
} catch (\LogicException $e) {
// This try/catch statement is here rather than in getCache() for semver
// A LogicException may be thrown from `Symfony\Component\Finder\Finder::getIterator()`
// if the config manifest is empty. There are some edge cases where this can happen, for instance
// running `sspak save` on a fresh install without ?flush
$cache = null;
}
$key = __FUNCTION__; $key = __FUNCTION__;
if ($cache->has($key)) { if ($cache && $cache->has($key)) {
return (array) $cache->get($key); return (array) $cache->get($key);
} else { } else {
try { try {
@ -174,11 +182,16 @@ class DatabaseAdapterRegistry implements Flushable
} catch (Exception $e) { } catch (Exception $e) {
$paths = []; $paths = [];
} }
$cache->set($key, $paths); if ($cache) {
$cache->set($key, $paths);
}
return $paths; return $paths;
} }
} }
/**
* @return CacheInterface
*/
public static function getCache(): CacheInterface public static function getCache(): CacheInterface
{ {
return Injector::inst()->get(CacheInterface::class . '.DatabaseAdapterRegistry'); return Injector::inst()->get(CacheInterface::class . '.DatabaseAdapterRegistry');