public function GlobAsset::all

Returns all child assets.

Return value

array An array of AssetInterface objects

Overrides AssetCollection::all

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/GlobAsset.php, line 43

Class

GlobAsset
A collection of assets loaded by glob.

Namespace

Assetic\Asset

Code

public function all() {
  if (!$this->initialized) {
    $this
      ->initialize();
  }
  return parent::all();
}