예제 #1
0
파일: Money.php 프로젝트: brick/money
 /**
  * Returns a Money whose value is the negated value of this Money.
  *
  * @return Money
  */
 public function negated()
 {
     return new Money($this->amount->negated(), $this->currency);
 }