public function AssetCache::getValues

Returns the current values for this asset.

Return value

array an array of strings

Overrides AssetInterface::getValues

File

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

Class

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

Namespace

Assetic\Asset

Code

public function getValues() {
  return $this->asset
    ->getValues();
}