| 1 | <?php |
||
| 30 | trait ArrayAccessTrait |
||
| 31 | { |
||
| 32 | public function offsetExists($offset)/*# : bool */ |
||
| 36 | |||
| 37 | public function offsetGet($offset) |
||
| 41 | |||
| 42 | public function offsetSet($offset, $value) |
||
| 46 | |||
| 47 | public function offsetUnset($offset) |
||
| 51 | |||
| 52 | // from ConfigInterface |
||
| 53 | abstract public function has(/*# string */ $id)/*# : bool */; |
||
| 55 | |||
| 56 | // from WritableInterface |
||
| 57 | abstract public function set(/*# string */ $id, $value)/*#: bool */; |
||
| 58 | } |
||
| 59 |