From b4636b3e08de69dc21c5dddd1093afb938e899de Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 16 Jan 2019 00:19:00 +0000 Subject: [PATCH] Add descriptions to commands --- src/Command/FetchTweetsCommand.php | 2 +- src/Command/RetweetTweetsCommand.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Command/FetchTweetsCommand.php b/src/Command/FetchTweetsCommand.php index f10b57b..d1dc4fc 100644 --- a/src/Command/FetchTweetsCommand.php +++ b/src/Command/FetchTweetsCommand.php @@ -28,7 +28,7 @@ class FetchTweetsCommand extends Command protected function configure() { $this - ->setDescription('Add a short description for your command') + ->setDescription('Fetch and store any tweets to be retweeted') ; } diff --git a/src/Command/RetweetTweetsCommand.php b/src/Command/RetweetTweetsCommand.php index 02d6be7..d56ca8f 100644 --- a/src/Command/RetweetTweetsCommand.php +++ b/src/Command/RetweetTweetsCommand.php @@ -47,7 +47,7 @@ class RetweetTweetsCommand extends Command protected function configure() { $this - ->setDescription('Add a short description for your command') + ->setDescription('Retweet one or more stored tweets') ->addOption('number', null, InputOption::VALUE_OPTIONAL, 'Specify how many tweets to retweet.', 1) ; }