WellCommerce\Bundle\CurrencyBundle\Twig\Extension\CurrencyExtension::convertPrice PHP Method

convertPrice() public method

Converts the given amount
public convertPrice ( float $price, null | string $baseCurrency = null, null | string $targetCurrency = null, integer $quantity = 1 ) : string
$price float
$baseCurrency null | string
$targetCurrency null | string
$quantity integer
return string
    public function convertPrice(float $price, $baseCurrency = null, $targetCurrency = null, $quantity = 1) : string
    {
        return $this->helper->convert($price, $baseCurrency, $targetCurrency, $quantity);
    }