| 1 | <?php |
||
| 17 | abstract class AbstractItemManager implements |
||
| 18 | ItemManagerInterface, |
||
| 19 | ManagerInterface |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | public function findItemById($id) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function findItemByWishlist($wishlistId) |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function createItem(): ItemInterface |
||
| 47 | } |
||
| 48 |