1: | <?php declare(strict_types=1); |
2: | |
3: | |
4: | |
5: | |
6: | |
7: | |
8: | |
9: | |
10: | |
11: | |
12: | |
13: | |
14: | class Config_Module extends Scope_Module |
15: | { |
16: | public function set(string $name, ...$val): bool |
17: | { |
18: | debug('Forwarding to scope:set'); |
19: | return parent::set($name, ...$val); |
20: | } |
21: | |
22: | public function list(string $filter = ''): array |
23: | { |
24: | debug('Forwarding to scope:list'); |
25: | return parent::list($filter); |
26: | } |
27: | |
28: | public function info(string $name): ?array |
29: | { |
30: | debug('Forwarding to scope:info'); |
31: | return parent::info($name); |
32: | } |
33: | |
34: | public function get(string $name, ...$val) |
35: | { |
36: | debug('Forwarding to scope:get'); |
37: | return parent::get($name, ...$val); |
38: | } |
39: | |
40: | |
41: | public function _housekeeping() |
42: | { |
43: | |
44: | } |
45: | } |
46: | |