rfc:deprecate-inconsistent-cast-keywords

PHP RFC: Deprecate Inconsistent Cast Names

Introduction

Scalar type declarations use only a single name for each numeric type, but casts permit some variation. This RFC proposes to deprecate the variants that are not valid as type declarations for reasons of consistency.

Proposal

The following cast forms will emit E_DEPRECATED errors, with a schedule for removal to be agreed either during discussion of this RFC or in a subsequent RFC:

(integer) // use (int)
(boolean) // use (bool)
(double)  // use (float)
(real)    // use (float)

The main reason for this is to help ensure that code is consistent and obviously readable.

Backward Incompatible Changes

Any code which uses these cast forms will now emit E_DEPRECATED errors.

Proposed PHP Version(s)

PHP 7.3

Proposed Voting Choices

Yes/No, with a 2/3 majority required.

Patches and Tests

No implementation currently exists.

References

Links to external references, discussions or RFCs

rfc/deprecate-inconsistent-cast-keywords.txt · Last modified: 2022/04/17 18:33 by ilutov