From e5308d76c5663605d94b3f3bd30b62b2e9db731f Mon Sep 17 00:00:00 2001 From: Kevin Bond Date: Thu, 15 Feb 2024 11:30:04 -0500 Subject: [PATCH] minor: add `@deprecation` annotations --- src/AutoName.php | 2 ++ src/Configuration/DocblockConfiguration.php | 2 ++ src/ConfigureWithDocblocks.php | 2 ++ 3 files changed, 6 insertions(+) diff --git a/src/AutoName.php b/src/AutoName.php index 6fa6b3e..1b100f1 100644 --- a/src/AutoName.php +++ b/src/AutoName.php @@ -19,6 +19,8 @@ * @example GenerateUserReportCommand => app:generate-user-report * * @author Kevin Bond + * + * @deprecated */ trait AutoName { diff --git a/src/Configuration/DocblockConfiguration.php b/src/Configuration/DocblockConfiguration.php index 9d4c5fc..0d59b7b 100644 --- a/src/Configuration/DocblockConfiguration.php +++ b/src/Configuration/DocblockConfiguration.php @@ -27,6 +27,8 @@ * @author Kevin Bond * * @template T of Command + * + * @deprecated */ final class DocblockConfiguration { diff --git a/src/ConfigureWithDocblocks.php b/src/ConfigureWithDocblocks.php index 92b1a29..ccc14d7 100644 --- a/src/ConfigureWithDocblocks.php +++ b/src/ConfigureWithDocblocks.php @@ -53,6 +53,8 @@ * @command |app:my:command|alias1|alias2 arg1 ?arg2 arg3=default arg4="default with space" ?arg5[] --option1 --option2= --option3=default --option4="default with space" --o|option5[] * * @author Kevin Bond + * + * @deprecated */ trait ConfigureWithDocblocks {