orderId = $orderId; $this->companyId = $companyId; $this->warehouseId = $warehouseId; } /** * @return string */ public function getOrderId(): string { return $this->orderId; } /** * @return int|null */ public function getCompanyId(): ?int { return $this->companyId; } /** * @return int|null */ public function getWarehouseId(): ?int { return $this->warehouseId; } /** * @param int|null $warehouseId */ public function setWarehouseId(?int $warehouseId): void { $this->warehouseId = $warehouseId; } }