| 1 | <?php |
||
| 5 | class ItemRepository extends AbstractRepository { |
||
| 6 | |||
| 7 | /** |
||
| 8 | * @param int $itemId |
||
| 9 | * @return Item|null |
||
| 10 | */ |
||
| 11 | public function findById($itemId) { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @return Item[] |
||
| 17 | */ |
||
| 18 | public function findAllItems() { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param $starterItemsIds |
||
| 24 | * @return Item[] |
||
| 25 | */ |
||
| 26 | public function findSeveralByIds($starterItemsIds) |
||
| 30 | } |
||
| 31 |