feature/cierres #30

Merged
aldarien merged 460 commits from feature/cierres into develop 2025-09-11 15:16:17 -03:00
313 changed files with 754 additions and 12551 deletions
Showing only changes of commit b9adb9108b - Show all commits

View File

@ -8,9 +8,9 @@ interface Provider
{ {
/** /**
* @param string $money_symbol * @param string $money_symbol
* @param DateTimeInterface $dateTime * @param ?DateTimeInterface $dateTime = null
* @return float * @return float
* @throws EmptyResponse * @throws EmptyResponse
*/ */
public function get(string $money_symbol, DateTimeInterface $dateTime): float; public function get(string $money_symbol, ?DateTimeInterface $dateTime = null): float;
} }