You are here

function NumberPatternSymbol::__construct in Currency 7.2

Implements __construct().

File

currency/vendor/bartfeenstra/cldr/src/BartFeenstra/CLDR/NumberPatternSymbol.php, line 53
Contains class \BartFeenstra\CLDR\NumberPatternSymbol.

Class

NumberPatternSymbol
Describes a character from a number pattern .

Namespace

BartFeenstra\CLDR

Code

function __construct($symbol, $position = NULL, $escaped = FALSE) {
  $this->symbol = $symbol;
  $this->position = $position;
  $this->escaped = $escaped;
}