| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 19 | final class WishlistProductFactoryFacade implements WishlistProductFactoryFacadeInterface |
||
| 20 | { |
||
| 21 | private WishlistProductFactoryInterface $wishlistProductFactory; |
||
| 22 | |||
| 23 | public function __construct(WishlistProductFactoryInterface $wishlistProductFactory) |
||
| 26 | } |
||
| 27 | |||
| 28 | public function createWithProduct(WishlistInterface $wishlist, ProductInterface $product): void |
||
| 33 | } |
||
| 34 | |||
| 35 | public function createWithProductVariant(WishlistInterface $wishlist, ProductVariantInterface $productVariant): void |
||
| 42 |