PHP 8.2.30
Preview: ExchangerExchange.php Size: 1.24 KB
/proc/thread-self/root/home/byroehnu/easetack.com/vendor/moneyphp/money/src/Exchange/ExchangerExchange.php

<?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);
    }
}

Directory Contents

Dirs: 0 × Files: 6

Name Size Perms Modified Actions
1.24 KB lrw-rw-rw- 2025-04-03 08:26:36
Edit Download
984 B lrw-rw-rw- 2025-04-03 08:26:36
Edit Download
4.05 KB lrw-rw-rw- 2025-04-03 08:26:36
Edit Download
336 B lrw-rw-rw- 2025-04-03 08:26:36
Edit Download
1.22 KB lrw-rw-rw- 2025-04-03 08:26:36
Edit Download
1014 B lrw-rw-rw- 2025-04-03 08:26:36
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).