示例#1
0
 /**
  * @return Money
  * @param Money $m
  */
 public function add(Money $m)
 {
     $this->amount += $m->intVal();
     $this->updated();
     return $this;
 }