You are here

public function NumberFormatterFactory::__construct in Commerce Core 8.2

Constructs a new NumberFormatterFactory object.

Parameters

\CommerceGuys\Intl\Formatter\CurrencyFormatterInterface $currency_formatter: The currency formatter.

File

modules/price/src/NumberFormatterFactory.php, line 29

Class

NumberFormatterFactory
Defines the NumberFormatter factory.

Namespace

Drupal\commerce_price

Code

public function __construct(CurrencyFormatterInterface $currency_formatter) {
  $this->currencyFormatter = $currency_formatter;
}