PHP 8 Reference: Match vs Switch, Enums, Readonly, and the Type Juggling Traps
PHP 8.x changed more than most developers realise. Here's what's worth knowing.
Match expression — not just a cleaner switch
// switch: loose comparison (==), fall-through, no return value
// match: strict (===), no fall-through, throws UnhandledMatc...
releaserun.hashnode.dev2 min read