1 | <?php |
||
13 | abstract class Entity implements \ArrayAccess |
||
14 | { |
||
15 | protected $internaleCounter = 0; |
||
16 | |||
17 | /** |
||
18 | * @param $offset |
||
19 | * @param $value |
||
20 | */ |
||
21 | 2 | public function offsetSet($offset, $value) |
|
30 | |||
31 | /** |
||
32 | * @param $offset |
||
33 | * |
||
34 | * @return bool |
||
35 | */ |
||
36 | 2 | public function offsetExists($offset) |
|
40 | |||
41 | /** |
||
42 | * @param $offset |
||
43 | */ |
||
44 | 2 | public function offsetUnset($offset) |
|
48 | |||
49 | /** |
||
50 | * @param $offset |
||
51 | */ |
||
52 | 2 | public function offsetGet($offset) |
|
56 | } |
||
57 |