1 | <?php |
||
22 | class DefinitionList extends ArrayObject |
||
23 | { |
||
24 | |||
25 | /** |
||
26 | * Appends a definition to the list |
||
27 | * |
||
28 | * @param DefinitionInterface $value |
||
29 | */ |
||
30 | 72 | public function append($value) |
|
38 | |||
39 | /** |
||
40 | * Sets the value on a specific offset index |
||
41 | * |
||
42 | * @param mixed $offset The index being set. |
||
43 | * @param mixed $value The new value for the index. |
||
44 | */ |
||
45 | 74 | public function offsetSet($offset, $value) |
|
56 | } |