Example #1
0
 /**
  * Checks whether a Money has the same Currency as this
  *
  * @param Money $money
  * @return bool
  */
 public function isSameCurrency(Money $money)
 {
     return $this->currency->equals($money->currency);
 }