1 | <?php |
||
7 | final class Currency implements CurrencyInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $code; |
||
13 | |||
14 | /** |
||
15 | * Currency constructor. |
||
16 | * @param string $code |
||
17 | */ |
||
18 | public function __construct(string $code) |
||
22 | |||
23 | /** |
||
24 | * @inheritDoc |
||
25 | */ |
||
26 | public function getCode(): string |
||
30 | |||
31 | /** |
||
32 | * @inheritDoc |
||
33 | */ |
||
34 | public function getName(string $locale = null): string |
||
41 | } |
||
42 |