1 | <?php |
||
20 | abstract class AbstractSet |
||
21 | extends AbstractCollection |
||
22 | implements SetInterface |
||
23 | { |
||
24 | /** |
||
25 | * {@inheritDoc} |
||
26 | */ |
||
27 | public function offsetSet($offset, $value) |
||
38 | |||
39 | /** |
||
40 | * {@inheritDoc} |
||
41 | */ |
||
42 | public function offsetUnset($index) |
||
46 | |||
47 | /** |
||
48 | * {@inheritDoc} |
||
49 | */ |
||
50 | public function offsetExists($index) |
||
54 | |||
55 | /** |
||
56 | * {@inheritDoc} |
||
57 | */ |
||
58 | public function offsetGet($index) |
||
62 | } |
||
63 | |||
64 |