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