You are here

public function Currency::setCurrencyAmountFormatterManager in Currency 8.3

Sets the currency amount formatter manager.

Parameters

\Drupal\currency\Plugin\Currency\AmountFormatter\AmountFormatterManagerInterface $currency_amount_formatter_manager:

Return value

$this

File

src/Entity/Currency.php, line 370

Class

Currency
Defines a currency entity class.

Namespace

Drupal\currency\Entity

Code

public function setCurrencyAmountFormatterManager(AmountFormatterManagerInterface $currency_amount_formatter_manager) {
  $this->currencyAmountFormatterManager = $currency_amount_formatter_manager;
  return $this;
}