1 | <?php |
||
20 | class ModuleOptionsFactory implements FactoryInterface |
||
21 | { |
||
22 | /** |
||
23 | * Module options service name |
||
24 | * @deprecated use \WebinoDebug\Options\ModuleOptions::class instead |
||
25 | */ |
||
26 | const SERVICE = ModuleOptions::class; |
||
27 | |||
28 | /** |
||
29 | * Configuration service section key |
||
30 | */ |
||
31 | const CONFIG_KEY = 'webino_debug'; |
||
32 | |||
33 | /** |
||
34 | * @param ServiceLocatorInterface $services |
||
35 | * @return ModuleOptions |
||
36 | */ |
||
37 | public function createService(ServiceLocatorInterface $services) |
||
47 | } |
||
48 |