Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | final class ProductAttributeValueRepository implements ProductAttributeValueRepositoryInterface |
||
19 | { |
||
20 | /** @var BaseAttributeValueRepositoryInterface */ |
||
21 | private $baseAttributeValueRepository; |
||
22 | |||
23 | public function __construct(BaseAttributeValueRepositoryInterface $baseAttributeValueRepository) |
||
26 | } |
||
27 | |||
28 | public function getUniqueAttributeValues(AttributeInterface $productAttribute): array |
||
41 |