PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
moneyphp
/
money
/
src
<?php namespace Money; use Money\Exception\UnresolvableCurrencyPairException; /** * Provides a way to get exchange rate from a third-party source and return a currency pair. * * @author Márk Sági-Kazár <mark.sagikazar@gmail.com> */ interface Exchange { /** * Returns a currency pair for the passed currencies with the rate coming from a third-party source. * * @param Currency $baseCurrency * @param Currency $counterCurrency * * @return CurrencyPair * * @throws UnresolvableCurrencyPairException When there is no currency pair (rate) available for the given currencies */ public function quote(Currency $baseCurrency, Currency $counterCurrency); }
[-] Currencies.php
[edit]
[+]
Currencies
[-] Calculator.php
[edit]
[+]
Parser
[-] Converter.php
[edit]
[+]
..
[-] MoneyFactory.php
[edit]
[+]
Exception
[-] CurrencyPair.php
[edit]
[+]
Exchange
[-] MoneyParser.php
[edit]
[-] Exchange.php
[edit]
[+]
Formatter
[-] MoneyFormatter.php
[edit]
[-] Number.php
[edit]
[+]
PHPUnit
[-] Currency.php
[edit]
[+]
Calculator
[-] Exception.php
[edit]
[-] Money.php
[edit]