public function InstallBackend::deleteTags

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

Overrides DatabaseBackend::deleteTags

File

drupal/core/lib/Drupal/Core/Cache/InstallBackend.php, line 106
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 deleteTags(array $tags) {
  try {
    if (class_exists('Drupal\\Core\\Database\\Database')) {
      parent::deleteTags($tags);
    }
  } catch (Exception $e) {
  }
}