REDROOM
PHP 8.2.30
Path:
Logout
Edit File
Size: 1.24 KB
Close
/proc/thread-self/root/home/byroehnu/easetack.com/vendor/moneyphp/money/src/Exchange/ExchangerExchange.php
Text
Base64
<?php declare(strict_types=1); namespace Money\Exchange; use Exchanger\Contract\ExchangeRateProvider; use Exchanger\CurrencyPair as ExchangerCurrencyPair; use Exchanger\Exception\Exception as ExchangerException; use Exchanger\ExchangeRateQuery; use Money\Currency; use Money\CurrencyPair; use Money\Exception\UnresolvableCurrencyPairException; use Money\Exchange; use function sprintf; /** * Provides a way to get exchange rate from a third-party source and return a currency pair. */ final class ExchangerExchange implements Exchange { public function __construct(private readonly ExchangeRateProvider $exchanger) { } public function quote(Currency $baseCurrency, Currency $counterCurrency): CurrencyPair { try { $query = new ExchangeRateQuery( new ExchangerCurrencyPair($baseCurrency->getCode(), $counterCurrency->getCode()) ); $rate = $this->exchanger->getExchangeRate($query); } catch (ExchangerException) { throw UnresolvableCurrencyPairException::createFromCurrencies($baseCurrency, $counterCurrency); } $rateValue = sprintf('%.14F', $rate->getValue()); return new CurrencyPair($baseCurrency, $counterCurrency, $rateValue); } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 6
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
ExchangerExchange.php
1.24 KB
lrw-rw-rw-
2025-04-03 08:26:36
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
FixedExchange.php
984 B
lrw-rw-rw-
2025-04-03 08:26:36
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
IndirectExchange.php
4.05 KB
lrw-rw-rw-
2025-04-03 08:26:36
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
IndirectExchangeQueuedItem.php
336 B
lrw-rw-rw-
2025-04-03 08:26:36
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
ReversedCurrenciesExchange.php
1.22 KB
lrw-rw-rw-
2025-04-03 08:26:36
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
SwapExchange.php
1014 B
lrw-rw-rw-
2025-04-03 08:26:36
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).