Files
oficial/app/common/Define/Money/Provider.php

17 lines
391 B
PHP
Raw Normal View History

2023-09-13 18:51:46 -03:00
<?php
namespace Incoviba\Common\Define\Money;
use DateTimeInterface;
2025-03-03 14:57:22 -03:00
use Incoviba\Common\Implement\Exception\EmptyResponse;
2023-09-13 18:51:46 -03:00
interface Provider
{
2025-03-03 14:57:22 -03:00
/**
* @param string $money_symbol
* @param ?DateTimeInterface $dateTime = null
2025-03-03 14:57:22 -03:00
* @return float
* @throws EmptyResponse
*/
public function get(string $money_symbol, ?DateTimeInterface $dateTime = null): float;
2023-09-13 18:51:46 -03:00
}