| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 15 | final class AddProductToWishlist implements WishlistTokenValueAwareInterface |
||
| 16 | { |
||
| 17 | public int $productId; |
||
| 18 | |||
| 19 | private WishlistInterface $wishlist; |
||
| 20 | |||
| 21 | public function __construct(int $productId) |
||
| 22 | { |
||
| 23 | $this->productId = $productId; |
||
| 24 | } |
||
| 25 | |||
| 26 | public function getWishlist(): WishlistInterface |
||
| 29 | } |
||
| 30 | |||
| 31 | public function setWishlist(WishlistInterface $wishlist): void |
||
| 34 | } |
||
| 35 | } |
||
| 36 |