@@ -31,29 +31,29 @@ |
||
31 | 31 | */ |
32 | 32 | |
33 | 33 | class Territory extends AbstractEntity { |
34 | - /** |
|
35 | - * Chinese name of the territory |
|
36 | - * @var string |
|
37 | - */ |
|
38 | - protected $nameZh = ''; |
|
34 | + /** |
|
35 | + * Chinese name of the territory |
|
36 | + * @var string |
|
37 | + */ |
|
38 | + protected $nameZh = ''; |
|
39 | 39 | |
40 | - /** |
|
41 | - * Sets the Chinese name of the territory |
|
42 | - * |
|
43 | - * @param string $nameZh |
|
44 | - * |
|
45 | - * @return void |
|
46 | - */ |
|
47 | - public function setNameZh($nameZh) { |
|
48 | - $this->nameZh = $nameZh; |
|
49 | - } |
|
40 | + /** |
|
41 | + * Sets the Chinese name of the territory |
|
42 | + * |
|
43 | + * @param string $nameZh |
|
44 | + * |
|
45 | + * @return void |
|
46 | + */ |
|
47 | + public function setNameZh($nameZh) { |
|
48 | + $this->nameZh = $nameZh; |
|
49 | + } |
|
50 | 50 | |
51 | - /** |
|
52 | - * Returns the Chinese name of the territory |
|
53 | - * |
|
54 | - * @return string |
|
55 | - */ |
|
56 | - public function getNameZh() { |
|
57 | - return $this->nameZh; |
|
58 | - } |
|
51 | + /** |
|
52 | + * Returns the Chinese name of the territory |
|
53 | + * |
|
54 | + * @return string |
|
55 | + */ |
|
56 | + public function getNameZh() { |
|
57 | + return $this->nameZh; |
|
58 | + } |
|
59 | 59 | } |