REDROOM
PHP 8.2.30
Path:
Logout
Edit File
Size: 984 B
Close
/proc/thread-self/root/home/byroehnu/easetack.com/vendor/moneyphp/money/src/Exchange/FixedExchange.php
Text
Base64
<?php declare(strict_types=1); namespace Money\Exchange; use Money\Currency; use Money\CurrencyPair; use Money\Exception\UnresolvableCurrencyPairException; use Money\Exchange; /** * Provides a way to get exchange rate from a static list (array). */ final class FixedExchange implements Exchange { /** @phpstan-param array<non-empty-string, array<non-empty-string, numeric-string>> $list */ public function __construct(private readonly array $list) { } public function quote(Currency $baseCurrency, Currency $counterCurrency): CurrencyPair { if (isset($this->list[$baseCurrency->getCode()][$counterCurrency->getCode()])) { return new CurrencyPair( $baseCurrency, $counterCurrency, $this->list[$baseCurrency->getCode()][$counterCurrency->getCode()] ); } throw UnresolvableCurrencyPairException::createFromCurrencies($baseCurrency, $counterCurrency); } }
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).