public function JsCollectionOptimizer::__construct

public JsCollectionOptimizer::__construct(AssetCollectionGrouperInterface $grouper, AssetOptimizerInterface $optimizer, AssetDumperInterface $dumper, StateInterface $state)

Constructs a JsCollectionOptimizer.

Parameters

\Drupal\Core\Asset\AssetCollectionGrouperInterface: The grouper for JS assets.

\Drupal\Core\Asset\AssetOptimizerInterface: The optimizer for a single JS asset.

\Drupal\Core\Asset\AssetDumperInterface: The dumper for optimized JS assets.

\Drupal\Core\State\StateInterface: The state key/value store.

File

core/lib/Drupal/Core/Asset/JsCollectionOptimizer.php, line 53

Class

JsCollectionOptimizer
Optimizes JavaScript assets.

Namespace

Drupal\Core\Asset

Code

public function __construct(AssetCollectionGrouperInterface $grouper, AssetOptimizerInterface $optimizer, AssetDumperInterface $dumper, StateInterface $state) {
  $this->grouper = $grouper;
  $this->optimizer = $optimizer;
  $this->dumper = $dumper;
  $this->state = $state;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Asset!JsCollectionOptimizer.php/function/JsCollectionOptimizer::__construct/8.1.x