interface AssetOptimizerInterface
Interface defining a service that optimizes an asset.
Hierarchy
- interface \Drupal\Core\Asset\AssetOptimizerInterface
Expanded class hierarchy of AssetOptimizerInterface
All classes that implement AssetOptimizerInterface
1 file declares its use of AssetOptimizerInterface
- CssCollectionOptimizerUnitTest.php in core/tests/ Drupal/ Tests/ Core/ Asset/ CssCollectionOptimizerUnitTest.php 
File
- 
              core/lib/ Drupal/ Core/ Asset/ AssetOptimizerInterface.php, line 8 
Namespace
Drupal\Core\AssetView source
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);
}Members
| Title Sort descending | Modifiers | Object type | Summary | Overrides | 
|---|---|---|---|---|
| AssetOptimizerInterface::clean | public | function | Removes unwanted content from an asset. | 2 | 
| AssetOptimizerInterface::optimize | public | function | Optimizes an asset. | 2 | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
