| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | class CArray extends CData implements \ArrayAccess, \Countable |
||
| 31 | { |
||
| 32 | |||
| 33 | public function offsetExists($offset) |
||
| 35 | // TODO: Implement offsetExists() method. |
||
| 36 | } |
||
| 37 | |||
| 38 | public function offsetGet($offset) |
||
| 39 | { |
||
| 40 | // TODO: Implement offsetGet() method. |
||
| 41 | } |
||
| 42 | |||
| 43 | public function offsetSet($offset, $value) |
||
| 44 | { |
||
| 45 | // TODO: Implement offsetSet() method. |
||
| 46 | } |
||
| 47 | |||
| 48 | public function offsetUnset($offset) |
||
| 50 | // TODO: Implement offsetUnset() method. |
||
| 51 | } |
||
| 52 | } |