| 1 | <?php |
||
| 25 | trait ArrayAccessTrait |
||
| 26 | { |
||
| 27 | public function offsetExists($offset)/*# : bool */ |
||
| 31 | |||
| 32 | public function offsetGet($offset) |
||
| 36 | |||
| 37 | public function offsetSet($offset, $value) |
||
| 41 | |||
| 42 | public function offsetUnset($offset) |
||
| 46 | |||
| 47 | abstract public function has(/*# string */ $key)/*# : bool */; |
||
| 50 | } |
||
| 51 |