| Total Complexity | 4 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class Env implements \ArrayAccess |
||
| 6 | { |
||
| 7 | public function offsetGet($offset) |
||
| 8 | { |
||
| 9 | return "%env($offset)%"; |
||
| 10 | } |
||
| 11 | |||
| 12 | public function offsetExists($offset) |
||
| 13 | { |
||
| 14 | // TODO: Implement offsetExists() method. |
||
| 15 | } |
||
| 16 | |||
| 17 | public function offsetSet($offset, $value) |
||
| 18 | { |
||
| 19 | // TODO: Implement offsetSet() method. |
||
| 20 | } |
||
| 21 | |||
| 22 | public function offsetUnset($offset) |
||
| 24 | // TODO: Implement offsetUnset() method. |
||
| 25 | } |
||
| 26 | } |