| 1 | <?php |
||
| 6 | class ItemRepository extends AbstractRepository |
||
| 7 | { |
||
| 8 | |||
| 9 | /** |
||
| 10 | * @param int $itemId |
||
| 11 | * @return Item|null |
||
| 12 | */ |
||
| 13 | public function findById($itemId) |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return Item[] |
||
| 20 | */ |
||
| 21 | public function findAllItems() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param $starterItemsIds |
||
| 28 | * @return Item[] |
||
| 29 | */ |
||
| 30 | public function findSeveralByIds($starterItemsIds) |
||
| 34 | } |
||
| 35 |