Created
May 8, 2015 21:14
-
-
Save dmregister/628d597435334956f28d to your computer and use it in GitHub Desktop.
shared events
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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