Total Complexity | 2 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | final class ProductProductAttributesContext implements ProductAttributesContextInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var TaxonContextInterface |
||
21 | */ |
||
22 | private $taxonContext; |
||
23 | |||
24 | /** |
||
25 | * @var AttributesFinderInterface |
||
26 | */ |
||
27 | private $attributesFinder; |
||
28 | |||
29 | /** |
||
30 | * @param TaxonContextInterface $taxonContext |
||
31 | * @param AttributesFinderInterface $attributesFinder |
||
32 | */ |
||
33 | public function __construct( |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * {@inheritdoc} |
||
44 | */ |
||
45 | public function getAttributes(): ?array |
||
53 |