NumberFormatterFactoryInterface.php in Price 3.x
Same filename and directory in other branches
Namespace
Drupal\priceFile
src/NumberFormatterFactoryInterface.phpView source
<?php
namespace Drupal\price;
/**
* Defines the interface for NumberFormatter factories.
*
* @deprecated Replaced by CurrencyFormatterInterface.
*/
interface NumberFormatterFactoryInterface {
/**
* Creates an instance of the number formatter for the current locale.
*
* @return \Drupal\price\LegacyNumberFormatter
* The created number formatter.
*/
public function createInstance();
}
Interfaces
Name | Description |
---|---|
NumberFormatterFactoryInterface Deprecated | Defines the interface for NumberFormatter factories. |