1: <?php declare(strict_types=1);
2:
3: /**
4: * Copyright (C) Apis Networks, Inc - All Rights Reserved.
5: *
6: * Unauthorized copying of this file, via any medium, is
7: * strictly prohibited without consent. Any dissemination of
8: * material herein is prohibited.
9: *
10: * For licensing inquiries email <licensing@apisnetworks.com>
11: *
12: * Written by Matt Saladna <matt@apisnetworks.com>, August 2018
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: