I would like to enforce PER coding style for enum cases: https://www.php-fig.org/per/coding-style/#9-enumerations Before: ```php enum Status: string { case ACTIVE = "active"; case INACTIVE = "inactive"; case SUSPENDED = "suspended"; } ``` Expected: ```php enum Status: string { case Active = "active"; case Inactive = "inactive"; case Suspended = "suspended"; } ``` Tricky part: what about acronyms?
I would like to enforce PER coding style for enum cases: https://www.php-fig.org/per/coding-style/#9-enumerations
Before:
Expected:
Tricky part: what about acronyms?