From 72239c8e0047a887d388dbd51c0e1067524d3bcf Mon Sep 17 00:00:00 2001 From: Awilum Date: Tue, 21 Sep 2021 13:34:45 +0300 Subject: [PATCH] feat(console): update CacheGetCommand #543 --- src/flextype/core/Console/Commands/Cache/CacheGetCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flextype/core/Console/Commands/Cache/CacheGetCommand.php b/src/flextype/core/Console/Commands/Cache/CacheGetCommand.php index 73199410..dbd6a9ad 100644 --- a/src/flextype/core/Console/Commands/Cache/CacheGetCommand.php +++ b/src/flextype/core/Console/Commands/Cache/CacheGetCommand.php @@ -20,7 +20,7 @@ class CacheGetCommand extends Command protected function configure(): void { $this->setName('cache:get'); - $this->setDescription('Get value'); + $this->setDescription('Get key'); $this->addArgument('key', InputArgument::REQUIRED, 'Key.'); $this->addArgument('default', InputArgument::OPTIONAL, 'Default.'); }