| 1 | <?php |
||
| 8 | class Terminal extends PartialResponse |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | protected $title; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | protected $country; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var Nature[] |
||
| 22 | */ |
||
| 23 | protected $natures; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var Currency[] |
||
| 27 | */ |
||
| 28 | protected $currencies; |
||
| 29 | |||
| 30 | protected function init() |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @return string |
||
| 56 | */ |
||
| 57 | public function getTitle() : string |
||
| 61 | |||
| 62 | /** |
||
| 63 | * @return string |
||
| 64 | */ |
||
| 65 | public function getCountry() : string |
||
| 69 | |||
| 70 | /** |
||
| 71 | * @return Nature[] |
||
| 72 | */ |
||
| 73 | public function getNatures() : array |
||
| 77 | |||
| 78 | /** |
||
| 79 | * @return Currency[] |
||
| 80 | */ |
||
| 81 | public function getCurrencies() : array |
||
| 85 | } |
||
| 86 |