/home/techb158/immovalet.com/vendor/moneyphp/money/src
NameSizeModeActions
Calculator/-0755rm
Currencies/-0755rm
Exception/-0755rm
Exchange/-0755rm
Formatter/-0755rm
Parser/-0755rm
PHPUnit/-0755rm
Calculator.php25540644editdlrm
Converter.php14490644editdlrm
Currencies.php6930644editdlrm
Currency.php15950644editdlrm
CurrencyPair.php33740644editdlrm
Exception.php1690644editdlrm
Exchange.php7120644editdlrm
Money.php159730644editdlrm
MoneyFactory.php91600644editdlrm
MoneyFormatter.php3420644editdlrm
MoneyParser.php4620644editdlrm
Number.php83900644editdlrm
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; } }