Is there a reason there isn't a Lazy Aggregate for attaching listeners to the **Shared** Event Manager? Something like: ``` class SharedLazyListenerAggregate { ... public function attachShared(SharedEventManagerInterface $manager, $priority = 1) { foreach ($this->lazyListeners as $lazyListener) { $this->listeners[] = $manager->attach( '*', $lazyListener->getEvent(), $lazyListener, $lazyListener->getPriority($priority) ); } } ``` Ping @bakura10
Is there a reason there isn't a Lazy Aggregate for attaching listeners to the Shared Event Manager?
Something like:
Ping @bakura10