name = $name; $this->value = $value; $this->description = $description; } /** * Get the enum value's name/key. * * @return string */ public function getName(): string { return $this->name; } /** * Get the enum value's value. * * @return string */ public function getValue() : string { return $this->value; } /** * Get the enum value's description. * * @return string */ public function getDescription() : string { return $this->description; } }