| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 17 | public function resolve(ProductVariantInterface $variant, string $baseUrl): string |
||
| 18 | { |
||
| 19 | if (false === $variant->getProduct()->getImages()->first()) { |
||
|
|
|||
| 20 | return 'http://placehold.it/150x150'; |
||
| 21 | } |
||
| 22 | $imagePath = $variant->getProduct()->getImages()->first()->getPath(); |
||
| 23 | |||
| 24 | return $baseUrl . '/media/image/' . $imagePath; |
||
| 25 | } |
||
| 27 |