A PHP internals mailing list discussion around a new RFC proposing literal scalar types for PHP, allowing function signatures to express exact accepted values like `0|1|2` or `'ascii'|'utf-8'` directly in type hints. The RFC author argues this fills gaps that enums cannot: retrofitting existing scalar APIs without breaking callers, ad-hoc open value sets that can grow without BC breaks, and native scalar interop (array keys, JSON, strict equality). Participants debate whether enums already cover these use cases, with some noting backed enums handle scalar interop and that open-ended sets are a poor fit for both enums and literal unions. A suggestion to extend the feature with range types (e.g., `int -1..1`) is acknowledged as a logical follow-up but deferred to a separate proposal. Early community sentiment is cautiously positive, appreciating the simplicity of the feature.