NumberFormatterFactory.php in Price 3.0.x
File
src/NumberFormatterFactory.php
View source
<?php
namespace Drupal\price;
use CommerceGuys\Intl\Formatter\CurrencyFormatterInterface;
@trigger_error('The ' . __NAMESPACE__ . '\\NumberFormatterFactory is deprecated. Instead, use \\Drupal\\price\\CurrencyFormatter. See http://drupal.org/node/the-change-notice-nid.', E_USER_DEPRECATED);
class NumberFormatterFactory implements NumberFormatterFactoryInterface {
protected $currencyFormatter;
public function __construct(CurrencyFormatterInterface $currency_formatter) {
$this->currencyFormatter = $currency_formatter;
}
public function createInstance() {
return new LegacyNumberFormatter($this->currencyFormatter);
}
}