| Conditions | 3 |
| Paths | 4 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 53 | public function getLinkFieldValue() |
||
| 54 | { |
||
| 55 | return ( |
||
| 56 | $this->productMetadata->getEdition() !== 'Community' |
||
| 57 | && version_compare($this->productMetadata->getVersion(), '2.1.0', '>=') |
||
| 58 | ) |
||
| 59 | ? 'entity_id' |
||
| 60 | : $this->metadataPool->getMetadata(ProductInterface::class)->getLinkField(); |
||
| 61 | } |
||
| 62 | } |
||
| 63 |