1 | <?php |
||
6 | class CountryOfOrigin implements HydratableInterface |
||
7 | { |
||
8 | /** |
||
9 | * @var string |
||
10 | */ |
||
11 | private $country; |
||
12 | |||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | private $source; |
||
17 | |||
18 | 9 | public function hydrateXml(\SimpleXMLElement $xml) |
|
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | 3 | public function getCountry() : string |
|
35 | |||
36 | /** |
||
37 | * @return string |
||
38 | */ |
||
39 | 3 | public function getSource() : string |
|
43 | } |
||
44 |