1 | <?php |
||
6 | class Terminal implements HydratableInterface |
||
7 | { |
||
8 | use CurrenciesTrait; |
||
9 | use NaturesTrait; |
||
10 | |||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $title; |
||
15 | |||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $country; |
||
20 | |||
21 | /** |
||
22 | * @return string |
||
23 | */ |
||
24 | 3 | public function getTitle() : string |
|
28 | |||
29 | /** |
||
30 | * @return string |
||
31 | */ |
||
32 | 3 | public function getCountry() : string |
|
36 | |||
37 | 6 | public function hydrateXml(\SimpleXMLElement $xml) |
|
44 | } |
||
45 |