1 | <?php |
||
8 | class Country extends AbstractEntity |
||
9 | { |
||
10 | |||
11 | /** |
||
12 | * The Chinese short name |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $shortNameZh = ''; |
||
17 | |||
18 | /** |
||
19 | * Sets the Chinese short name. |
||
20 | */ |
||
21 | public function setShortNameZh(string $shortNameZh):void |
||
25 | |||
26 | /** |
||
27 | * Gets the Chinese short name. |
||
28 | */ |
||
29 | public function getShortNameZh():string |
||
33 | } |
||
34 |