示例#1
0
文件: Money.php 项目: brick/money
 /**
  * Returns whether this Money has a negative or zero value.
  *
  * @return bool
  */
 public function isNegativeOrZero()
 {
     return $this->amount->isNegativeOrZero();
 }