public function ApcCache::remove

Overrides CacheInterface::remove

See also

CacheInterface::remove()

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Cache/ApcCache.php, line 62

Class

ApcCache
Uses APC to cache files

Namespace

Assetic\Cache

Code

public function remove($key) {
  return apc_delete($key);
}