value === null) { $this->value = false; foreach ($this->priceInfo->getPrices() as $price) { if ($price instanceof BasePriceProviderInterface && $price->getValue() !== false) { $this->value = min($price->getValue(), $this->value !== false ? $this->value: $price->getValue()); } } } return $this->value; } }