Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | class Module implements ModuleDefinitionInterface |
||
28 | { |
||
29 | |||
30 | /** |
||
31 | * Registers an autoloader related to the module |
||
32 | * |
||
33 | * @param \Phalcon\Di\DiInterface $container |
||
34 | */ |
||
35 | public function registerAutoloaders(DiInterface $container = null){ |
||
36 | |||
37 | } |
||
38 | |||
39 | /** |
||
40 | * Registers services related to the module |
||
41 | * |
||
42 | * @param \Phalcon\Di\DiInterface $container |
||
43 | */ |
||
44 | public function registerServices(DiInterface $container){ |
||
46 | } |
||
47 | |||
48 | } |