1 | <?php |
||
15 | class Module implements |
||
16 | AutoloaderProviderInterface, |
||
17 | ConfigProviderInterface |
||
18 | { |
||
19 | /** |
||
20 | * {@inheritDoc} |
||
21 | */ |
||
22 | public function getAutoloaderConfig() |
||
23 | { |
||
24 | return [ |
||
25 | 'Zend\Loader\StandardAutoloader' => [ |
||
26 | 'namespaces' => [ |
||
27 | __NAMESPACE__ => __DIR__, |
||
28 | ], |
||
29 | ], |
||
30 | ]; |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * {@inheritDoc} |
||
35 | */ |
||
36 | 1 | public function getConfig() |
|
40 | } |
||
41 |