<?php namespace Laminas\Mvc\Service; use Interop\Container\ContainerInterface; use Laminas\EventManager\EventManager; use Laminas\ServiceManager\Factory\FactoryInterface; class EventManagerFactory implements FactoryInterface { /** * Create an EventManager instance * * Creates a new EventManager instance, seeding it with a shared instance * of SharedEventManager. * * @param ContainerInterface $container * @param string $name * @param null|array $options * @return EventManager */ public function __invoke(ContainerInterface $container, $name, array $options = null) { $shared = $container->has('SharedEventManager') ? $container->get('SharedEventManager') : null; return new EventManager($shared); } }