public function AssetCollection::all

Returns all child assets.

Return value

array An array of AssetInterface objects

Overrides AssetCollectionInterface::all

1 call to AssetCollection::all()
GlobAsset::all in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/GlobAsset.php
Returns all child assets.
1 method overrides AssetCollection::all()
GlobAsset::all in drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/GlobAsset.php
Returns all child assets.

File

drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Asset/AssetCollection.php, line 63

Class

AssetCollection
A collection of assets.

Namespace

Assetic\Asset

Code

public function all() {
  return $this->assets;
}