Skip to content

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