| 1 | <?php |
||
| 18 | abstract class Entity implements \ArrayAccess |
||
| 19 | { |
||
| 20 | protected $internaleCounter = 0; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param $offset |
||
| 24 | * @param $value |
||
| 25 | */ |
||
| 26 | public function offsetSet($offset, $value) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param $offset |
||
| 38 | * @return bool |
||
| 39 | */ |
||
| 40 | public function offsetExists($offset) |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @param $offset |
||
| 47 | */ |
||
| 48 | public function offsetUnset($offset) |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @param $offset |
||
| 55 | * @return null |
||
| 56 | */ |
||
| 57 | public function offsetGet($offset) |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @param $name |
||
| 64 | * @param $val |
||
| 65 | * @return $this |
||
| 66 | */ |
||
| 67 | public function setSecure($name, $val) |
||
| 73 | } |
||
| 74 |