| 1 | <?php declare(strict_types = 1); |
||
| 9 | class CharacterList extends AbstractList |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * The list of returned characters in this collection. |
||
| 13 | * |
||
| 14 | * @var array |
||
| 15 | */ |
||
| 16 | private $items; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return array |
||
| 20 | */ |
||
| 21 | public function getItems() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param array $items |
||
| 28 | */ |
||
| 29 | public function setItems(array $items) |
||
| 33 | } |
||
| 34 |