X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar/vendor/moneyphp/money/src/Exchange
home
/
gfecatvj
/
sites
/
realesbar
/
vendor
/
moneyphp
/
money
/
src
/
Exchange
/
๐
..
๐
ExchangerExchange.php
(1.38 KB)
๐
FixedExchange.php
(1.02 KB)
๐
IndirectExchange.php
(5.69 KB)
๐
ReversedCurrenciesExchange.php
(1.26 KB)
๐
SwapExchange.php
(1.08 KB)
Editing: SwapExchange.php
<?php namespace Money\Exchange; use Exchanger\Exception\Exception as ExchangerException; use Money\Currency; use Money\CurrencyPair; use Money\Exception\UnresolvableCurrencyPairException; use Money\Exchange; use Swap\Swap; /** * 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> */ final class SwapExchange implements Exchange { /** * @var Swap */ private $swap; /** * @param Swap $swap */ public function __construct(Swap $swap) { $this->swap = $swap; } /** * {@inheritdoc} */ public function quote(Currency $baseCurrency, Currency $counterCurrency) { try { $rate = $this->swap->latest($baseCurrency->getCode().'/'.$counterCurrency->getCode()); } catch (ExchangerException $e) { throw UnresolvableCurrencyPairException::createFromCurrencies($baseCurrency, $counterCurrency); } return new CurrencyPair($baseCurrency, $counterCurrency, $rate->getValue()); } }
Upload File
Create Folder