You are here

function IntegerFormatter::__clone in Currency 7.2

Implements __clone().

File

currency/vendor/bartfeenstra/cldr/src/BartFeenstra/CLDR/IntegerFormatter.php, line 154
Contains class \BartFeenstra\CLDR\IntegerFormatter.

Class

IntegerFormatter
Formats an integer according CLDR number pattern guidelines.

Namespace

BartFeenstra\CLDR

Code

function __clone() {
  $this->symbols = $this
    ->cloneNumberPatternSymbols($this->symbols);
}