Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | protected function getRelativeConfigFilePath($configFileName, $area = 'global') |
||
30 | { |
||
31 | if ($area == 'global') { |
||
32 | $relativeConfigFilePath = 'etc/' . $configFileName; |
||
33 | } else { |
||
34 | $this->validateArea($area); |
||
35 | $relativeConfigFilePath = 'etc/' . $area . '/' . $configFileName; |
||
36 | } |
||
37 | |||
38 | return $relativeConfigFilePath; |
||
39 | } |
||
40 | |||
55 |