Returns an array of resources.
Return value
array An array of resources
File
- drupal/core/vendor/kriswallsmith/assetic/src/Assetic/Factory/LazyAssetManager.php, line 83
Class
- LazyAssetManager
- A lazy asset manager is a composition of a factory and many formula loaders.
Namespace
Assetic\Factory
Code
public function getResources() {
$resources = array();
foreach ($this->resources as $r) {
$resources = array_merge($resources, $r);
}
return $resources;
}