/**
  * Returns true if the provided amount is greater, than the current lower
  * limit
  *
  * @param  Money $other
  * @return bool
  */
 protected function matches($other)
 {
     return $this->lowerLimit->lessThan($other);
 }