rfc:reserve_more_types_in_php_7

This is an old revision of the document!


PHP RFC: Reserve More Types in PHP 7

Proposal

This RFC prevents the use of the following words to be used as a class, interface or trait name:

  • int, integer
  • bool, boolean
  • true, false
  • float, double
  • string
  • null

This RFC does not fully reserve them as keywords; it only prohibits their usage as class, interface and trait names.

Rationale

Facilitate Future RFCs

Reserving these words in PHP 7 would allow for another RFC to add scalar types in a minor release such as PHP 7.1 (assuming they make no backwards compatibility breaks). Without reserving them now a future RFC would only be able to target major PHP versions such as version 8 since they would break backwards compatibility.

Disallowing Classes

Given that PHP has primitive types such as int, float, string and null it does not make sense for them to exist as classes, or if they do they should be provided by PHP itself.

Backward Incompatible Changes

This breaks any and all cases where these new reserved words are used in class, interface or trait names. It does not break any usages as function or method names or as class constants.

Unaffected PHP Functionality

This RFC does not change the way our current parameter and return type hints work. Support for these new reserved words as types for parameters or return types is beyond the scope of this RFC.

Future Scope

Potentially future RFCs could:

  • add explicit scalar type support for parameter and return types
  • reserve other types such as numeric, mixed or ''scalar'

Proposed Voting Choices

The vote will be a simple “yes” or “no”: do you vote in favor of reserving these type names?

This RFC requires at least two thirds of the votes to be “yes” to pass.

Patches and Tests

There is currently no implementation.

rfc/reserve_more_types_in_php_7.1424305696.txt.gz · Last modified: 2017/09/22 13:28 (external edit)