1 | <?php |
||
19 | class ConfigMigrationControllerFactory implements FactoryInterface |
||
20 | { |
||
21 | /** |
||
22 | * Create an object |
||
23 | 1 | * |
|
24 | * @param ContainerInterface $container |
||
25 | * @param string $requestedName |
||
26 | * @param null|array $options |
||
27 | 1 | * @return object |
|
28 | * @throws ServiceNotFoundException if unable to resolve the service. |
||
29 | 1 | * @throws ServiceNotCreatedException if an exception is raised when |
|
30 | * creating a service. |
||
31 | 1 | * @throws ContainerException if any other error occurs |
|
32 | */ |
||
33 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
||
42 | } |
||
43 |