1 | <?php |
||
25 | final class FixData implements \ArrayAccess |
||
26 | { |
||
27 | /** |
||
28 | * @param string $column |
||
29 | * @param $value |
||
30 | */ |
||
31 | public function add(string $column, $value) |
||
35 | |||
36 | /** |
||
37 | * @param mixed $offset |
||
38 | * |
||
39 | * @return bool |
||
40 | */ |
||
41 | public function offsetExists($offset) |
||
45 | |||
46 | /** |
||
47 | * @param string $offset |
||
48 | * |
||
49 | * @return mixed|null |
||
50 | */ |
||
51 | public function offsetGet($offset) |
||
55 | |||
56 | /** |
||
57 | * @param mixed $offset |
||
58 | * @param mixed $value |
||
59 | */ |
||
60 | public function offsetSet($offset, $value) |
||
64 | |||
65 | /** |
||
66 | * @param string $offset |
||
67 | */ |
||
68 | public function offsetUnset($offset) |
||
72 | } |
||
73 |