WellCommerce\Bundle\CurrencyBundle\Twig\Extension\CurrencyExtension::formatPrice PHP Метод

formatPrice() публичный Метод

Formats the given amount
public formatPrice ( float $price, null | string $baseCurrency = null, null | string $targetCurrency = null, null | string $locale = null, $quantity = 1 ) : string
$price float
$baseCurrency null | string
$targetCurrency null | string
$locale null | string
Результат string
    public function formatPrice(float $price, $baseCurrency = null, $targetCurrency = null, $locale = null, $quantity = 1) : string
    {
        return $this->helper->convertAndFormat($price, $baseCurrency, $targetCurrency, $quantity, $locale);
    }