| Conditions | 4 |
| Paths | 4 |
| Total Lines | 17 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function get($key, $locale = null, $default = null) |
||
| 22 | { |
||
| 23 | $this->fetch(); |
||
| 24 | |||
| 25 | if (! isset($this->values[$key])) { |
||
| 26 | return $default; |
||
| 27 | } |
||
| 28 | |||
| 29 | if (is_array($this->values[$key])) { |
||
| 30 | if ($this->values[$key]['value'] == null) { |
||
| 31 | return $default; |
||
| 32 | } |
||
| 33 | |||
| 34 | return $this->values[$key]['value']; |
||
| 35 | } |
||
| 36 | |||
| 37 | return $this->values[$key]; |
||
| 38 | } |
||
| 72 |