| 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 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | public function getProductBundleForProduct(ProductInterface $product): object |
||
| 43 | } |
||
| 44 |