| 1 | <?php |
||
| 16 | class ProductBundleRegistry implements ProductBundleRegistryInterface |
||
| 17 | { |
||
| 18 | /** @var RepositoryInterface */ |
||
| 19 | private $productBundleRepository; |
||
| 20 | |||
| 21 | public function __construct(RepositoryInterface $productBundleRepository) |
||
| 25 | |||
| 26 | public function isProductBundle(ProductInterface $product): bool |
||
| 31 | |||
| 32 | public function getProductBundleForProduct(ProductInterface $product): ProductBundleInterface |
||
| 40 | } |
||
| 41 |