type; } /** * Get id */ public function getId(): int { return $this->id; } /** * Set type */ public function setType(string $type): self { $this->type = $type; return $this; } /** * Set description */ public function setDescription(string $description): self { $this->description = $description; return $this; } /** * Get type * * @return string */ public function getType(): ?string { return $this->type; } /** * Get description * * @return string */ public function getDescription(): ?string { return $this->description; } }