Total Complexity | 5 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
19 | class System extends Config |
||
20 | { |
||
21 | public function setValue(string $name, $value) |
||
22 | { |
||
23 | $this->values[$name] = $value; |
||
24 | } |
||
25 | |||
26 | public function setValues(array $values) |
||
27 | { |
||
28 | $this->values = $values; |
||
29 | } |
||
30 | |||
31 | public function mergeValues(array $values) |
||
32 | { |
||
33 | $this->values = array_merge($this->values, $values); |
||
34 | } |
||
35 | |||
36 | protected function writeFile(string $path, array $data) |
||
37 | { |
||
38 | $this->writePhpFile($path, $data, false); |
||
39 | } |
||
40 | |||
41 | public function build() |
||
46 | } |
||
47 | } |
||
48 |