-
Notifications
You must be signed in to change notification settings - Fork 93
Open
Description
Why in \ZfcUser\EventManager\EventProvider we injected SharedEventManager
public function getEventManager()
{
if (!$this->events instanceof EventManagerInterface) {
$this->setEventManager(new EventManager(new SharedEventManager()));
}
return $this->events;
}... but in \ZfcBase\EventManager\EventProvider - not?
public function getEventManager()
{
if (!$this->events instanceof EventManagerInterface) {
$this->setEventManager(new EventManager());
}
return $this->events;
}Its situation leads to non correct working events.
Metadata
Metadata
Assignees
Labels
No labels