for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Abacaphiliac\Zend\EventManager\PluginManager\ListenerAggregate;
use Zend\EventManager\EventManagerInterface;
use Zend\EventManager\ListenerAggregateInterface;
class NullListenerAggregate implements ListenerAggregateInterface
{
/**
* Attach one or more listeners
*
* Implementors may add an optional $priority argument; the EventManager
* implementation will pass this to the aggregate.
* @param EventManagerInterface $events
* @return void
*/
public function attach(EventManagerInterface $events)
}
* Detach all previously attached listeners
public function detach(EventManagerInterface $events)