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