10 lines
177 B
PHP
10 lines
177 B
PHP
<?php
|
|
namespace Incoviba\Common\Define\Money;
|
|
|
|
use DateTimeInterface;
|
|
|
|
interface Provider
|
|
{
|
|
public function get(string $money_symbol, DateTimeInterface $dateTime): float;
|
|
}
|