| 1 | <?php |
||
| 10 | class NullEventManagerFactory implements FactoryInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @param ServiceLocatorInterface $serviceLocator |
||
| 14 | * @return \Zend\EventManager\EventManager |
||
| 15 | * @throws \Zend\ServiceManager\Exception\ServiceNotFoundException |
||
| 16 | */ |
||
| 17 | 2 | public function createService(ServiceLocatorInterface $serviceLocator) |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @param ServiceLocatorInterface $serviceLocator |
||
| 26 | * @return SharedEventManagerInterface |
||
| 27 | * @throws \Zend\ServiceManager\Exception\ServiceNotFoundException |
||
| 28 | */ |
||
| 29 | 2 | private function getSharedEventManager(ServiceLocatorInterface $serviceLocator) |
|
| 37 | } |
||
| 38 |