Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CurrencyHandler.php 526B

123456789101112131415161718
  1. <?php
  2. namespace App\Contracts;
  3. interface CurrencyHandler
  4. {
  5. public function isEnabled(): bool;
  6. public function getSupportedCurrencies(): ?array;
  7. public function getExchangeRates(string $baseCurrency, array $targetCurrencies): ?array;
  8. public function getCachedExchangeRates(string $baseCurrency, array $targetCurrencies): ?array;
  9. public function getCachedExchangeRate(string $baseCurrency, string $targetCurrency): ?float;
  10. public function updateCurrencyRatesCache(string $baseCurrency): ?array;
  11. }