1 | <?php |
||
4 | class Currency |
||
5 | { |
||
6 | /** |
||
7 | * @var string |
||
8 | */ |
||
9 | protected $currency; |
||
10 | |||
11 | 3 | public function __toString() : string |
|
12 | { |
||
13 | 3 | return (string)$this->currency; |
|
14 | } |
||
15 | |||
16 | 15 | public function hydrateXml(\SimpleXMLElement $xml) |
|
20 | |||
21 | /** |
||
22 | * @return string |
||
23 | */ |
||
24 | 6 | public function getCurrency() : string |
|
28 | } |
||
29 |