| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class TableMaskItem implements MaskItemGeneratorForAttributeType |
||
| 9 | { |
||
| 10 | public function forRawValue(string $attributeCode, string $channelCode, string $localeCode, $value): array |
||
| 11 | { |
||
| 12 | return [ |
||
| 13 | sprintf( |
||
| 14 | '%s-%s-%s', |
||
| 15 | $attributeCode, |
||
| 16 | $channelCode, |
||
| 17 | $localeCode |
||
| 18 | ) |
||
| 19 | ]; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function supportedAttributeTypes(): array |
||
| 26 | ]; |
||
| 27 | } |
||
| 29 |