From f17164acc193d08ed5d4572c702488e0db81419c Mon Sep 17 00:00:00 2001 From: Awilum Date: Tue, 21 Sep 2021 15:16:08 +0300 Subject: [PATCH] feat(console): update CacheGetMultipleCommand #543 --- .../core/Console/Commands/Cache/CacheGetMultipleCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flextype/core/Console/Commands/Cache/CacheGetMultipleCommand.php b/src/flextype/core/Console/Commands/Cache/CacheGetMultipleCommand.php index 9c5b2671..989d1054 100644 --- a/src/flextype/core/Console/Commands/Cache/CacheGetMultipleCommand.php +++ b/src/flextype/core/Console/Commands/Cache/CacheGetMultipleCommand.php @@ -20,7 +20,7 @@ class CacheGetMultipleCommand extends Command protected function configure(): void { $this->setName('cache:get-multiple'); - $this->setDescription('Get multiple keys'); + $this->setDescription('Get multiple items.'); $this->addArgument('keys', InputArgument::REQUIRED, 'Keys.'); $this->addArgument('default', InputArgument::OPTIONAL, 'Default.'); }