Value::set_up_currency_details()
Source
File: src/Tickets/Commerce/Utils/Value.php
public function set_up_currency_details() {
$this->currency_code = Currency::get_currency_code();
$this->currency_symbol = Currency::get_currency_symbol( $this->get_currency_code() );
$this->currency_symbol_position = Currency::get_currency_symbol_position( $this->get_currency_code() );
$this->currency_separator_decimal = Currency::get_currency_separator_decimal( $this->get_currency_code() );
$this->currency_separator_thousands = Currency::get_currency_separator_thousands( $this->get_currency_code() );
$this->set_precision( Currency::get_currency_precision( $this->get_currency_code() ) );
}