| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 16 | final class AddProductToSelectedWishlist |
||
| 17 | { |
||
| 18 | private WishlistInterface $wishlist; |
||
| 19 | private ProductInterface $product; |
||
| 20 | |||
| 21 | public function __construct(WishlistInterface $wishlist, ProductInterface $product) |
||
| 22 | { |
||
| 23 | $this->wishlist = $wishlist; |
||
| 24 | $this->product = $product; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function getWishlist(): WishlistInterface |
||
| 30 | } |
||
| 31 | |||
| 32 | public function getProduct(): ProductInterface |
||
| 35 | } |
||
| 36 | } |