| 1 | <?php |
||
| 12 | final class DetailedProductViewFactory implements ProductViewFactoryInterface |
||
| 13 | { |
||
| 14 | /** @var ProductViewFactoryInterface */ |
||
| 15 | private $productViewFactory; |
||
| 16 | |||
| 17 | /** @var ProductBreadcrumbGeneratorInterface */ |
||
| 18 | private $breadcrumbGenerator; |
||
| 19 | |||
| 20 | public function __construct( |
||
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | public function create(ProductInterface $product, ChannelInterface $channel, string $locale): ProductView |
||
| 38 | } |
||
| 39 |