1 | <?php |
||
24 | class Version |
||
25 | { |
||
26 | /** |
||
27 | * @var ProductMetadataInterface |
||
28 | */ |
||
29 | private $productMetadata; |
||
30 | |||
31 | /** |
||
32 | * @var MetadataPool |
||
33 | */ |
||
34 | private $metadataPool; |
||
35 | |||
36 | /** |
||
37 | * @param ProductMetadataInterface $productMetadata |
||
38 | * @param MetadataPool $metadataPool |
||
39 | */ |
||
40 | public function __construct( |
||
47 | |||
48 | /** |
||
49 | * @return string |
||
50 | * @throws Exception |
||
51 | */ |
||
52 | public function getLinkFieldValue(): string |
||
61 | } |
||
62 |