| 1 | <?php |
||
| 22 | abstract class AbstractList |
||
| 23 | extends AbstractCollection |
||
| 24 | implements ArrayList |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * {@inheritDoc} |
||
| 28 | */ |
||
| 29 | 9 | public function offsetSet($offset, $value) |
|
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritDoc} |
||
| 43 | */ |
||
| 44 | public function set(int $index, $value) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritDoc} |
||
| 51 | */ |
||
| 52 | public function offsetUnset($index) |
||
| 56 | |||
| 57 | /** |
||
| 58 | * {@inheritDoc} |
||
| 59 | */ |
||
| 60 | public function offsetExists($index) |
||
| 64 | |||
| 65 | /** |
||
| 66 | * {@inheritDoc} |
||
| 67 | */ |
||
| 68 | 6 | public function offsetGet($index) |
|
| 72 | |||
| 73 | /** |
||
| 74 | * {@inheritDoc} |
||
| 75 | */ |
||
| 76 | 2 | public function remove(int $index) |
|
| 80 | } |
||
| 81 | |||
| 82 |