1 | <?php |
||
22 | class ConfigLoaderHelperFactory implements FactoryInterface |
||
23 | { |
||
24 | /** |
||
25 | * Create config loader helper object. |
||
26 | * |
||
27 | * @param ContainerInterface $container |
||
28 | * @param string $requestedName |
||
29 | * @param null|array $options |
||
30 | * |
||
31 | * @return ConfigLoaderHelper |
||
32 | * |
||
33 | * @throws ServiceNotFoundException if unable to resolve the service. |
||
34 | * @throws ServiceNotCreatedException if an exception is raised when creating a service. |
||
35 | * @throws ContainerException if any other error occurs. |
||
36 | */ |
||
37 | 2 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
44 | } |
||
45 |