Money::__construct PHP Method

__construct() public method

public __construct ( $currencyCode = null, $microAmount = null )
        public function __construct($currencyCode = null, $microAmount = null)
        {
            $this->currencyCode = $currencyCode;
            $this->microAmount = $microAmount;
        }

Usage Example

示例#1
0
文件: BWP.php 项目: franciscoom/money
 public function __construct($amount)
 {
     parent::__construct($amount, new Currency('BWP'));
 }
All Usage Examples Of Money::__construct