1 | <?php |
||
8 | class ConfigDirectory implements ConfigInterface |
||
9 | { |
||
10 | /** @var string */ |
||
11 | private $path; |
||
12 | |||
13 | /** @var LoaderInterface */ |
||
14 | private $loader; |
||
15 | |||
16 | /** @var array */ |
||
17 | private $config = []; |
||
18 | |||
19 | 3 | public function __construct($path, LoaderInterface $loader) |
|
24 | |||
25 | 3 | public function get(string $dotPath, $default = null) |
|
35 | |||
36 | 3 | public function set(string $dotPath, $value) |
|
40 | } |
||
41 |