1 | <?php |
||
17 | abstract class AbstractWishlistManager implements |
||
18 | WishlistManagerInterface, |
||
19 | ManagerInterface |
||
20 | { |
||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | public function findWishlistById($id) |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function findWishlistBySharingCode(string $sharingCode) |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function createWishlist(): WishlistInterface |
||
47 | } |
||
48 |