/home/techb158/immovalet.com/vendor/moneyphp/money/src
Edit: /home/techb158/immovalet.com/vendor/moneyphp/money/src/Currency.php (1595B)
code = $code;
}
/**
* Returns the currency code.
*
* @return string
*/
public function getCode()
{
return $this->code;
}
/**
* Checks whether this currency is the same as an other.
*
* @param Currency $other
*
* @return bool
*/
public function equals(Currency $other)
{
return $this->code === $other->code;
}
/**
* Checks whether this currency is available in the passed context.
*
* @param Currencies $currencies
*
* @return bool
*/
public function isAvailableWithin(Currencies $currencies)
{
return $currencies->contains($this);
}
/**
* @return string
*/
public function __toString()
{
return $this->code;
}
/**
* {@inheritdoc}
*
* @return string
*/
public function jsonSerialize()
{
return $this->code;
}
}