1 | <?php |
||
18 | class ManagerRegistryFactory implements FactoryInterface |
||
19 | { |
||
20 | use EventManagerAwareTrait; |
||
21 | |||
22 | /** |
||
23 | * Идендификатор EventManager'a |
||
24 | * |
||
25 | * @var array |
||
26 | */ |
||
27 | protected $eventIdentifier = [ |
||
28 | 'DoctrineManagerRegistry' |
||
29 | ]; |
||
30 | |||
31 | /** |
||
32 | * @param ServiceLocatorInterface $serviceLocator |
||
33 | * |
||
34 | * @return ManagerRegistry |
||
35 | * @throws \Nnx\JmsSerializerModule\Util\Exception\RuntimeException |
||
36 | */ |
||
37 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
53 | } |
||
54 |