type = $type; $this->description = $description; $this->width = $width; $this->height = $height; $this->length = $length; $this->weight = $weight; $this->quantity = $quantity; $this->status = $status; $this->reference = $reference; } /** * @return int */ public function getType(): int { return $this->type; } /** * @return null|string */ public function getDescription(): ?string { return $this->description; } /** * @return float */ public function getWidth(): float { return $this->width; } /** * @return float */ public function getHeight(): float { return $this->height; } /** * @return float */ public function getLength(): float { return $this->length; } /** * @return float */ public function getWeight(): float { return $this->weight; } /** * @return int */ public function getQuantity(): int { return $this->quantity; } /** * @return int */ public function getStatus(): int { return $this->status; } /** * @return null|string */ public function getReference(): ?string { return $this->reference; } }