Skip to content

Instantly share code, notes, and snippets.

@dmregister
Created May 8, 2015 21:14
Show Gist options
  • Save dmregister/628d597435334956f28d to your computer and use it in GitHub Desktop.
Save dmregister/628d597435334956f28d to your computer and use it in GitHub Desktop.
shared events
public function onBootstrap(MvcEvent $e)
{
$application = $e->getApplication();
$em = $application->getEventManager();
$sharedEm = $em->getSharedManager();
$listener = $application->getServiceManager()->get('Event\Factory\Listener\LogEvents');
$sharedEm->attachAggregate($listener);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment