function CacheCollector::clear

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Cache/CacheCollector.php \Drupal\Core\Cache\CacheCollector::clear()
  2. 8.9.x core/lib/Drupal/Core/Cache/CacheCollector.php \Drupal\Core\Cache\CacheCollector::clear()
  3. 11.x core/lib/Drupal/Core/Cache/CacheCollector.php \Drupal\Core\Cache\CacheCollector::clear()

Clears the collected cache entry.

Overrides CacheCollectorInterface::clear

2 calls to CacheCollector::clear()
AliasWhitelist::clear in core/modules/path_alias/src/AliasWhitelist.php
Clears the collected cache entry.
State::resetCache in core/lib/Drupal/Core/State/State.php
Resets the static cache.
1 method overrides CacheCollector::clear()
AliasWhitelist::clear in core/modules/path_alias/src/AliasWhitelist.php
Clears the collected cache entry.

File

core/lib/Drupal/Core/Cache/CacheCollector.php, line 325

Class

CacheCollector
Default implementation for CacheCollectorInterface.

Namespace

Drupal\Core\Cache

Code

public function clear() {
  $this->reset();
  if ($this->tags) {
    Cache::invalidateTags($this->tags);
  }
  else {
    $this->cache
      ->delete($this->getCid());
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.