| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | public function generate(ProductInterface $product, string $locale): string |
||
| 12 | { |
||
| 13 | $breadcrumb = $product->getTranslation($locale)->getSlug(); |
||
| 14 | |||
| 15 | $taxon = $product->getMainTaxon(); |
||
| 16 | |||
| 17 | return $taxon ? sprintf('%s/%s', $taxon->getTranslation($locale)->getSlug(), $breadcrumb) : $breadcrumb; |
||
| 18 | } |
||
| 19 | } |
||
| 20 |