for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EventEspresso\core\services\assets;
use EventEspresso\core\exceptions\InvalidInterfaceException;
use EventEspresso\core\services\collections\Collection;
/**
* Class BlockAssetManagerCollection
* a Collection of BlockAssetManager objects
*
* @package EventEspresso\core\services\assets
* @author Brent Christensen
* @since $VID:$
*/
class BlockAssetManagerCollection extends Collection
{
* Collection constructor
* @throws InvalidInterfaceException
public function __construct()
parent::__construct('EventEspresso\core\services\assets\BlockAssetManager');
}
* @return void
public function addAssets()
$this->rewind();
while ($this->valid()) {
$this->current()->addAssets();
$this->next();
public function enqueueAssets()
$this->current()->enqueueAssets();