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

Breadcrumb

  1. Drupal Core 11.1.x

AssetCollectionOptimizerInterface.php

Namespace

Drupal\Core\Asset

File

core/lib/Drupal/Core/Asset/AssetCollectionOptimizerInterface.php

View source
<?php

namespace Drupal\Core\Asset;


/**
 * Interface defining a service that optimizes a collection of assets.
 */
interface AssetCollectionOptimizerInterface {
    
    /**
     * Optimizes a collection of assets.
     *
     * @param array $assets
     *   An asset collection.
     * @param array $libraries
     *   An array of library names.
     *
     * @return array
     *   An optimized asset collection.
     */
    public function optimize(array $assets, array $libraries);
    
    /**
     * Deletes all optimized asset collections assets.
     */
    public function deleteAll();

}

Interfaces

Title Deprecated Summary
AssetCollectionOptimizerInterface Interface defining a service that optimizes a collection of assets.
RSS feed
Powered by Drupal