Abstract_Currency::__construct( mixed $amount )
Initialize object
Contents
Parameters
- $amount
-
(mixed) (Required) the value to set initially
Source
File: src/Tribe/Values/Abstract_Currency.php
public function __construct( $amount = 0 ) {
$this->set_up_currency_details();
parent::__construct( $amount );
}
Changelog
| Version | Description |
|---|---|
| 4.14.9 | Introduced. |