You are here

interface AssetOptimizerInterface in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Asset/AssetOptimizerInterface.php \Drupal\Core\Asset\AssetOptimizerInterface

Interface defining a service that optimizes an asset.

Hierarchy

Expanded class hierarchy of AssetOptimizerInterface

All classes that implement AssetOptimizerInterface

File

core/lib/Drupal/Core/Asset/AssetOptimizerInterface.php, line 8

Namespace

Drupal\Core\Asset
View 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

Namesort descending Modifiers Type Description Overrides
AssetOptimizerInterface::clean public function Removes unwanted content from an asset. 2
AssetOptimizerInterface::optimize public function Optimizes an asset. 2