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