public function AssetReference::clearFilters

Clears all filters from the current asset.

Overrides AssetInterface::clearFilters

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetReference.php, line 46

Class

AssetReference
A reference to an asset in the asset manager.

Namespace

Assetic\Asset

Code

public function clearFilters() {
  $this->filters = array();
  $this
    ->callAsset(__FUNCTION__);
}