Hi,

On 03.01.21 12:01, Mike Schinkel wrote:
So in my perfect world this:

enum BookingStatus {
      case PENDING;
      case CONFIRMED;
      case CANCELLED;
}

Would be equivalent to:

enum BookingStatus {
      case PENDING = "PENDING";
      case CONFIRMED = "CONFIRMED";
      case CANCELLED = "CANCELLED";
}

I'm with Mikes' suggesting here, see also my previous messages [1] [2].

I don't know how to back this up with numbers, but the way I see it the majority of use cases will have a benefit of being able to directly use the literal values derived from the lexical ones and the ability to have custom values is feature next to it.

[1] https://externals.io/message/112626#112655
[2] https://externals.io/message/112626#112663

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: https://www.php.net/unsub.php

Reply via email to