1 cache-install.inc BackdropFakeCache::garbageCollection()

Overrides BackdropDatabaseCache::garbageCollection().

Overrides BackdropDatabaseCache::garbageCollection

File

core/includes/cache-install.inc, line 93
Provides a stub cache implementation to be used during installation.

Class

BackdropFakeCache
Defines a stub cache implementation to be used during installation.

Code

function garbageCollection() {
  try {
    if (class_exists('Database')) {
      parent::garbageCollection();
    }
  }
  catch (Exception $e) {
  }
}