| 1 | <?php |
||
| 20 | abstract class AbstractList |
||
| 21 | extends AbstractCollection |
||
| 22 | implements ListInterface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * {@inheritDoc} |
||
| 26 | */ |
||
| 27 | 4 | 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 | 1 | public function offsetGet($index) |
|
| 62 | |||
| 63 | /** |
||
| 64 | * {@inheritDoc} |
||
| 65 | */ |
||
| 66 | 1 | public function remove(int $index) |
|
| 70 | } |
||
| 71 | |||
| 72 |