Change indentation from tabs to spaces

This commit is contained in:
Joseph Ting
2014-09-17 21:58:49 +08:00
parent 2b96773e6b
commit db4bdc635a

View File

@@ -148,51 +148,51 @@ class Item extends PPModel
return $this->sku; return $this->sku;
} }
/** /**
* Set Description * Set Description
* Description of the item * Description of the item
* *
* @param string $description * @param string $description
* *
* @return $this * @return $this
*/ */
public function setDescription($description) { public function setDescription($description) {
$this->description = $description; $this->description = $description;
return $this; return $this;
} }
/** /**
* Get Description * Get Description
* Description of the item * Description of the item
* *
* @return string * @return string
*/ */
public function getDescription() { public function getDescription() {
return $this->description; return $this->description;
} }
/** /**
* Set Tax * Set Tax
* Tax of the item * Tax of the item
* *
* @param string $tax * @param string $tax
* *
* @return $this * @return $this
*/ */
public function setTax($tax) { public function setTax($tax) {
$this->tax = $tax; $this->tax = $tax;
return $this; return $this;
} }
/** /**
* Get Tax * Get Tax
* Tax of the item * Tax of the item
* *
* @return string * @return string
*/ */
public function getTax($tax) { public function getTax($tax) {
return $this->tax; return $this->tax;
} }
} }