Completed
Pull Request — master (#2)
by
unknown
15:15
created
Classes/Domain/Model/Territory.php 1 patch
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -31,29 +31,29 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.