id = $id; $this->name = $name; $this->description = $description; $this->value = $value; $this->type = $type; $this->isActive = $isActive; $this->order = $order; } /** * @return int */ public function getId(): int { return $this->id; } /** * @return string */ public function getName(): string { return $this->name; } /** * @return string */ public function getDescription(): string { return $this->description; } /** * @return string */ public function getValue(): string { return $this->value; } /** * @return string */ public function getType(): string { return $this->type; } /** * @return bool */ public function getIsActive(): bool { return $this->isActive; } /** * @return int */ public function getOrder(): int { return $this->order ?? 9999; } }