Abstract_Currency::__construct( mixed $amount )

Initialize object


Parameters

$amount

(mixed) (Required) the value to set initially


Top ↑

Source

File: src/Tribe/Values/Abstract_Currency.php

	public function __construct( $amount = 0 ) {
		$this->set_up_currency_details();

		parent::__construct( $amount );
	}

Top ↑

Changelog

Changelog
Version Description
4.14.9 Introduced.