From 72902430b4d6ce2151fcb2e0e233e12bed8745d2 Mon Sep 17 00:00:00 2001 From: Marc Beinder Date: Mon, 3 Nov 2025 07:06:22 -0600 Subject: [PATCH] Deprecate the Deprecated Attribute in favor of PHP 8.4 Deprecated Attribute --- src/Attributes/Deprecated.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Attributes/Deprecated.php b/src/Attributes/Deprecated.php index e77a0c4..07c9eea 100644 --- a/src/Attributes/Deprecated.php +++ b/src/Attributes/Deprecated.php @@ -5,4 +5,5 @@ use Attribute; #[Attribute(Attribute::TARGET_CLASS)] +/** @deprecated Use PHP 8.4 Deprecated Attribute instead. */ class Deprecated {}