description = $description; $this->longDescription = $longDescription; $this->qty = $qty; $this->rate = $rate; $this->order = $order; $this->unit = $unit; } /** * @return string */ public function getDescription(): string { return $this->description; } /** * @return string */ public function getLongDescription(): string { return $this->longDescription; } /** * @return float */ public function getQty(): float { return $this->qty; } /** * @return float */ public function getRate(): float { return $this->rate; } /** * @return int */ public function getOrder(): int { return $this->order; } /** * @return string */ public function getUnit(): string { return $this->unit; } }