Constructor is private to ensure instances are created through static methods.
Parameters
$valuestringrequired- The enum value.
$namestringrequired- The constant name.
Source
final private function __construct(string $value, string $name)
{
$this->value = $value;
$this->name = $name;
}
Changelog
| Version | Description |
|---|---|
| 0.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.