summaryrefslogtreecommitdiffstatshomepage
path: root/core/lib/Drupal/Core/Asset/AssetCollectionOptimizerInterface.php
blob: c9460538009be31ecd42bb6c64dee4a681f92d5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?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();

}