您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }