You are here

NumberFormatterFactoryInterface.php in Price 3.0.x

Namespace

Drupal\price

File

src/NumberFormatterFactoryInterface.php
View 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

Namesort descending Description
NumberFormatterFactoryInterface Deprecated Defines the interface for NumberFormatter factories.