| 1 | <?php |
||
| 9 | final class FixData implements \ArrayAccess |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @param string $column |
||
| 13 | * @param $value |
||
| 14 | */ |
||
| 15 | public function add(string $column, $value) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param mixed $offset |
||
| 22 | * |
||
| 23 | * @return bool |
||
| 24 | */ |
||
| 25 | public function offsetExists($offset) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @param string $offset |
||
| 32 | * |
||
| 33 | * @return mixed|null |
||
| 34 | */ |
||
| 35 | public function offsetGet($offset) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param mixed $offset |
||
| 42 | * @param mixed $value |
||
| 43 | */ |
||
| 44 | public function offsetSet($offset, $value) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param string $offset |
||
| 51 | */ |
||
| 52 | public function offsetUnset($offset) |
||
| 56 | } |
||
| 57 |