From 7e0a34e8d148d9ef38ec8ef1bea7ef9769d4c54d Mon Sep 17 00:00:00 2001 From: Awilum Date: Tue, 21 Sep 2021 15:15:48 +0300 Subject: [PATCH] feat(console): update CacheDeleteCommand #543 --- src/flextype/core/Console/Commands/Cache/CacheDeleteCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flextype/core/Console/Commands/Cache/CacheDeleteCommand.php b/src/flextype/core/Console/Commands/Cache/CacheDeleteCommand.php index 3d946241..e7cb59ef 100644 --- a/src/flextype/core/Console/Commands/Cache/CacheDeleteCommand.php +++ b/src/flextype/core/Console/Commands/Cache/CacheDeleteCommand.php @@ -19,7 +19,7 @@ class CacheDeleteCommand extends Command protected function configure(): void { $this->setName('cache:delete'); - $this->setDescription('Delete key'); + $this->setDescription('Delete item.'); $this->addArgument('key', InputArgument::REQUIRED, 'Key.'); }