From 9fd67451254cc3b44cbc2a0069aee1f7ff26b63a Mon Sep 17 00:00:00 2001 From: Brock H Caldwell Date: Thu, 10 Jul 2025 10:39:32 -0500 Subject: [PATCH] chore: adds descriptions to command --- src/Base/Framework/Command/ConfigSetCommand.php | 2 +- src/Base/Framework/Command/SeedDatabaseCommand.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Base/Framework/Command/ConfigSetCommand.php b/src/Base/Framework/Command/ConfigSetCommand.php index 5179c84..2796269 100644 --- a/src/Base/Framework/Command/ConfigSetCommand.php +++ b/src/Base/Framework/Command/ConfigSetCommand.php @@ -11,7 +11,7 @@ use Symfony\Component\Console\Style\SymfonyStyle; #[AsCommand( name: 'config:set', - description: 'Add a short description for your command', + description: '[deprecated] This command currently serves no use. It may be re-purposed or removed in the future.', )] class ConfigSetCommand extends Command { diff --git a/src/Base/Framework/Command/SeedDatabaseCommand.php b/src/Base/Framework/Command/SeedDatabaseCommand.php index 03aa9d5..5c25ede 100644 --- a/src/Base/Framework/Command/SeedDatabaseCommand.php +++ b/src/Base/Framework/Command/SeedDatabaseCommand.php @@ -15,7 +15,7 @@ use Symfony\Component\Console\Style\SymfonyStyle; #[AsCommand( name: 'db:seed', - description: 'Seed the database with required data.', + description: 'Seeds the database with required data. This command is run every time a new container is created from the torsearch-app image and is part of the init process.', )] class SeedDatabaseCommand extends Command {