public function AssetCache::__construct

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCache.php, line 28

Class

AssetCache
Caches an asset to avoid the cost of loading and dumping.

Namespace

Assetic\Asset

Code

public function __construct(AssetInterface $asset, CacheInterface $cache) {
  $this->asset = $asset;
  $this->cache = $cache;
}