| 1 | <?php |
||
| 7 | class Price |
||
| 8 | { |
||
| 9 | /** @var float */ |
||
| 10 | private $amount; |
||
| 11 | |||
| 12 | /** @var string */ |
||
| 13 | private $currency; |
||
| 14 | |||
| 15 | public function __construct(float $amount, string $currency) |
||
| 20 | |||
| 21 | public static function instance(float $amount, string $currency): Price |
||
| 25 | |||
| 26 | public function amount(): float |
||
| 30 | |||
| 31 | public function currency(): string |
||
| 35 | } |
||
| 36 |