/home/techb158/immovalet.com/vendor/moneyphp/money/src
Edit: /home/techb158/immovalet.com/vendor/moneyphp/money/src/Exchange.php (712B)
*/
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);
}