====== PHP RFC: #[\Deprecated] Attribute ====== * Version: 1.4 * Date: 2024-05-04 * Author: Benjamin Eberlei, Tim Düsterhus * Status: Under Discussion * First Published at: http://wiki.php.net/rfc/deprecated_attribute ===== Introduction ===== PHP’s internal functions and (class-)constants can be marked as deprecated, making this information available to Reflection and emitting deprecation errors (E_DEPRECATED), but there is no //equivalent// functionality for functions defined in userland. While the functionality can be //emulated// using trigger_error() to emit a E_USER_DEPRECATED error when calling a deprecated function, combined with either parsing a doc comment for the /** @deprecated */ annotation or attaching a custom-defined attribute and reading it with Reflection, it requires special handling depending on whether the function in question is an internal or a userland function. ReflectionFunctionAbstract::isDeprecated() always returns false for userland functions - and doc comments / custom attributes are unavailable for internal functions. For class constants the deprecation behavior cannot be emulated at all. ===== Proposal ===== A new attribute #[\Deprecated] shall be added: #[Attribute(Attribute::TARGET_METHOD|Attribute::TARGET_FUNCTION|Attribute::TARGET_CLASS_CONSTANT)] final class Deprecated { public readonly ?string $message; public function __construct(?string $message = null, ?string $since = null) {} } Applying this attribute to a userland function, method, or class constant will add the internal ''ZEND_ACC_DEPRECATED'' flag to the element, resulting in a behavior that is consistent with the existing deprecation functionality for internal functions and class constants. This means: * For functions and methods ReflectionFunctionAbstract::isDeprecated() will return true. * For class constants ReflectionClassConstant::isDeprecated() will return true (this method is newly added in PHP 8.4). * Calling a function will emit a E_USER_DEPRECATED error (internal functions emit E_DEPRECATED, but this error code is reserved for internal functions). * Accessing a class constant will emit a E_USER_DEPRECATED error (likewise internal class constants use E_DEPRECATED). The $message given within the attribute definition will be included in the error message when calling the function or accessing the class constant. It goes without saying that it will also be available to static analysis tools, just like the parameters of any other attribute. The optional $since argument is appended to the error message. It signals the version since the function/method is deprecated. This is included because due its pre-existing use in internals, php-doc, Symfony and others. While internal, non-class constants can also be marked as deprecated, there is no support for attributes on them yet, and ReflectionConstant has just been added in PHP 8.4. Adding attribute support for non-class constants is out of scope of this RFC/PR for now. Enum cases are internally implemented as class constants. Adding the #[\Deprecated] attribute to an enum case will behave as expected. ==== Examples ==== test(); // Deprecated: Method Clazz::test() is deprecated in test.php on line 34 $cls->test2(); // Deprecated: Method Clazz::test2() is deprecated, use test() instead in test.php on line 35 Clazz::OLD_WAY; // Deprecated: Constant Clazz::OLD_WAY is deprecated in test.php on line 36 MyEnum::OldCase; // Deprecated: Enum case MyEnum::OldCase is deprecated in test.php on line 38 call_user_func([$cls, "test"]); // Deprecated: Method Clazz::test() is deprecated in test.php on line 40 ?> isDeprecated()); // bool(true) ?> isDeprecated()); // bool(true) ?> getAttributes()[0]->newInstance()); /* object(Deprecated)#3 (1) { ["message"]=> NULL } */ $reflection = new ReflectionFunction('test2'); var_dump($reflection->getAttributes()[0]->newInstance()); /* object(Deprecated)#2 (1) { ["message"]=> NULL } */ $reflection = new ReflectionFunction('test3'); var_dump($reflection->getAttributes()[0]->newInstance()); /* object(Deprecated)#1 (1) { ["message"]=> string(18) "use test() instead" } */ ?> Further examples are given by [[https://github.com/php/php-src/pull/11293/files?file-filters%5B%5D=.phpt&show-viewed-files=true|the newly added tests within the PR for this RFC]]. ===== Backward Incompatible Changes ===== Deprecated can no longer be used as a class name in the global namespace. A GitHub search for ''"class Deprecated " language:php symbol:deprecated'' revealed a total of 173 matches in source code. The vast majority of them appear to be defined within a namespace. ===== Proposed PHP Version(s) ===== Next minor (PHP 8.4). ===== RFC Impact ===== ==== To SAPIs ==== None. ==== To Existing Extensions ==== The #[\Deprecated] attribute will also be available to internal functions and internal class constants. Within a stub file it will have the same effect as adding a /** @deprecated */ doc comment. The attribute will //not// be automatically applied to existing functions having the doc comment, but extension authors are encouraged to apply the attribute for consistency reasons. For extensions that are part of php-src the attribute will replace the existing doc comment as part of this RFC. ==== To Opcache ==== None. ==== New Constants ==== None. ==== php.ini Defaults ==== None. ===== Open Issues ===== A few things tracked in https://github.com/php/php-src/pull/11293 ===== Future Scope ===== * Supporting #[\Deprecated] on other targets of attributes that to not yet support deprecations for internally defined symbols. * Adding further metadata to the #[\Deprecated] attribute beyond a custom message (e.g. hints for replacements that IDEs could use). ===== Proposed Voting Choices ===== * Yes * No ===== Patches and Tests ===== https://github.com/php/php-src/pull/11293 ===== Implementation ===== n/a ===== References ===== * Implementation: https://github.com/php/php-src/pull/11293 * Early Mailing List Discussion: https://externals.io/message/112554#112554 ===== Rejected Features ===== * Changes to the runtime behavior of deprecated functions and class constants are out of scope of this RFC (i.e. not emitting the E_DEPRECATED error for internal functions). * Making the Deprecated attribute class non-final: Child classes of attributes are not understood by the engine for technical reasons and the semantics of a child class would be less clear for static analysis tools.