AssetDumperInterface.php
Same filename in other branches
Namespace
Drupal\Core\AssetFile
-
core/
lib/ Drupal/ Core/ Asset/ AssetDumperInterface.php
View source
<?php
namespace Drupal\Core\Asset;
/**
* Interface defining a service that dumps an (optimized) asset.
*/
interface AssetDumperInterface {
/**
* Dumps an (optimized) asset to persistent storage.
*
* @param string $data
* An (optimized) asset's contents.
* @param string $file_extension
* The file extension of this asset.
*
* @return string
* A URI to access the dumped asset.
*/
public function dump($data, $file_extension);
}
Interfaces
Title | Deprecated | Summary |
---|---|---|
AssetDumperInterface | Interface defining a service that dumps an (optimized) asset. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.