Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

AssetDumperInterface.php

Namespace

Drupal\Core\Asset

File

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.
RSS feed
Powered by Drupal