public function CacheInterface::get

Returns the value for a key.

Parameters

string $key A unique key:

Return value

string|null The value in the cache

4 methods override CacheInterface::get()
ApcCache::get in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Cache/ApcCache.php
ArrayCache::get in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Cache/ArrayCache.php
ExpiringCache::get in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Cache/ExpiringCache.php
Returns the value for a key.
FilesystemCache::get in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Cache/FilesystemCache.php
Returns the value for a key.

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Cache/CacheInterface.php, line 37

Class

CacheInterface
Interface for a cache backend.

Namespace

Assetic\Cache

Code

public function get($key);