Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
100.00% covered (success)
0 / 0
100.00% covered (success)
100.00%
0 / 0
CRAP
100.00% covered (success)
100.00%
0 / 0
<?php
/**
 * @file
 * Contains \Drupal\Core\Asset\AssetCollectionRendererInterface.
 */
namespace Drupal\Core\Asset;
/**
 * Interface defining a service that generates a render array to render assets.
 */
interface AssetCollectionRendererInterface {
  /**
   * Renders an asset collection.
   *
   * @param array $assets
   *   An asset collection.
   *
   * @return array
   *   A render array to render the asset collection.
   */
  public function render(array $assets);
}