public function ExpiringCache::get

Returns the value for a key.

Parameters

string $key A unique key:

Return value

string|null The value in the cache

Overrides CacheInterface::get

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Cache/ExpiringCache.php, line 44

Class

ExpiringCache
Adds expiration to a cache backend.

Namespace

Assetic\Cache

Code

public function get($key) {
  return $this->cache
    ->get($key);
}