1 | <?php |
||
8 | class ModuleOptionsFactory implements FactoryInterface |
||
9 | { |
||
10 | /** |
||
11 | * Create service |
||
12 | * |
||
13 | * @param ServiceLocatorInterface $serviceLocator |
||
14 | * @return ModuleOptions |
||
15 | * @throws \Zend\Stdlib\Exception\InvalidArgumentException |
||
16 | * @throws \Zend\ServiceManager\Exception\ServiceNotFoundException |
||
17 | */ |
||
18 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
30 | |||
31 | /** |
||
32 | * @param ServiceLocatorInterface $serviceLocator |
||
33 | * @return string[] |
||
34 | * @throws \Zend\Stdlib\Exception\InvalidArgumentException |
||
35 | * @throws \Zend\ServiceManager\Exception\ServiceNotFoundException |
||
36 | */ |
||
37 | public static function getFiles(ServiceLocatorInterface $serviceLocator) |
||
45 | } |
||
46 |