1 | <?php |
||
19 | class ProductBundleRegistry implements ProductBundleRegistryInterface |
||
20 | { |
||
21 | /** @var RepositoryInterface */ |
||
22 | private $productBundleRepository; |
||
23 | |||
24 | public function __construct(RepositoryInterface $productBundleRepository) |
||
28 | |||
29 | public function isProductBundle(ProductInterface $product): bool |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function getProductBundleForProduct(ProductInterface $product): ProductBundleInterface |
||
49 | } |
||
50 |