Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
31 | public function create(ProductInterface $product, ChannelInterface $channel, string $locale): ProductView |
||
32 | { |
||
33 | $productView = $this->productViewFactory->create($product, $channel, $locale); |
||
34 | $productView->breadcrumb = $this->breadcrumbGenerator->generate($product, $locale); |
||
35 | |||
36 | return $productView; |
||
37 | } |
||
38 | } |
||
39 |