Mercurial > hg > isophonics-drupal-site
view core/lib/Drupal/Core/Asset/AssetOptimizerInterface.php @ 9:1fc0ff908d1f
Add another data file
author | Chris Cannam |
---|---|
date | Mon, 05 Feb 2018 12:34:32 +0000 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Drupal\Core\Asset; /** * Interface defining a service that optimizes an asset. */ interface AssetOptimizerInterface { /** * Optimizes an asset. * * @param array $asset * An asset. * * @return string * The optimized asset's contents. */ public function optimize(array $asset); /** * Removes unwanted content from an asset. * * @param string $content * The content of an asset. * * @return string * The cleaned asset's contents. */ public function clean($content); }