Skip to content
IxDF Developer Docs
Search
K
Main Navigation
Main Sections
Workflows
Domain
Code
Environment
Servers
UI Kit
Appearance
Menu
Return to top
On this page
Enum
Use singular names
Use PascalCase for case names (to distinct from constants and follow native PHP's enum convention)
Prefer backed enums
php
enum
Suit
{
case
Hearts
;
case
Diamonds
;
case
Clubs
;
case
Spades
;
}
Literature
https://php.watch/versions/8.1/enums