| Conditions | 3 |
| Paths | 4 |
| Total Lines | 16 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | protected function readRaw($variable, $environment = null) |
||
| 18 | { |
||
| 19 | if($environment === null) |
||
| 20 | { |
||
| 21 | $environment = $this->defaultEnvironment; |
||
| 22 | } |
||
| 23 | |||
| 24 | $key = "$variable:$environment"; |
||
| 25 | |||
| 26 | if(array_key_exists($key, $this->values)) |
||
| 27 | { |
||
| 28 | return $this->values[$key]; |
||
| 29 | } |
||
| 30 | |||
| 31 | return null; |
||
| 32 | } |
||
| 33 | |||
| 42 | } |