| 1 | <?php |
||
| 8 | class Territory extends AbstractEntity |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Chinese name of the territory |
||
| 12 | * |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | protected $nameZh = ''; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Sets the Chinese name of the territory |
||
| 19 | */ |
||
| 20 | public function setNameZh(string $nameZh):void |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Returns the Chinese name of the territory |
||
| 27 | */ |
||
| 28 | public function getNameZh():string |
||
| 32 | } |
||
| 33 |