Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class ProductAttributeRepository implements ProductAttributeValueRepositoryInterface |
||
13 | { |
||
14 | |||
15 | /** |
||
16 | * @var BaseRepository |
||
17 | */ |
||
18 | protected $repository; |
||
19 | |||
20 | public function __construct(BaseRepository $repository) |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @param AttributeInterface $productAttribute |
||
27 | * |
||
28 | * @return array|ProductAttributeValueInterface[] |
||
29 | */ |
||
30 | public function getUniqueAttributeValues(AttributeInterface $productAttribute): array |
||
44 |