type = $type; $this->forwarderId = $forwarderId; $this->name = $name; $this->description = $description; $this->cost = $cost; } /** * @return null|int */ public function getType(): ?int { return $this->type; } /** * @return int|null */ public function getForwarderId(): ?int { return $this->forwarderId; } /** * @return null|String */ public function getName(): ?string { return $this->name; } /** * @return null|String */ public function getDescription(): ?string { return $this->description; } /** * @return float|null */ public function getCost(): ?float { return $this->cost; } }