description = $description; $this->quantity = $quantity; $this->width = $width; $this->height = $height; $this->length = $length; } /** * @return string */ public function getDescription(): string { return $this->description; } /** * @return int */ public function getQuantity(): int { return $this->quantity; } /** * @return int */ public function getWidth(): int { return $this->width; } /** * @return int */ public function getHeight(): int { return $this->height; } /** * @return int */ public function getLength(): int { return $this->length; } }