MabeEnum\Enum::__construct PHP Method

__construct() private final method

Constructor
private final __construct ( null | boolean | integer | float | string $value, integer | null $ordinal = null )
$value null | boolean | integer | float | string The value of the enumerator
$ordinal integer | null The ordinal number of the enumerator
    private final function __construct($value, $ordinal = null)
    {
        $this->value = $value;
        $this->ordinal = $ordinal;
    }