public function InstallBackend::deleteAll

Overrides Drupal\Core\Cache\DatabaseBackend::deleteAll().

Overrides DatabaseBackend::deleteAll

File

drupal/core/lib/Drupal/Core/Cache/InstallBackend.php, line 82
Definition of Drupal\Core\Cache\InstallBackend.

Class

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

Namespace

Drupal\Core\Cache

Code

public function deleteAll() {
  try {
    if (class_exists('Drupal\\Core\\Database\\Database')) {
      parent::deleteAll();
    }
  } catch (Exception $e) {
  }
}