From f738ffe649d832a137af47a5805dfcf6da174bf9 Mon Sep 17 00:00:00 2001 From: Awilum Date: Tue, 21 Sep 2021 14:15:56 +0300 Subject: [PATCH] feat(console): update CacheDeleteCommand #543 --- .../core/Console/Commands/Cache/CacheDeleteCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/flextype/core/Console/Commands/Cache/CacheDeleteCommand.php b/src/flextype/core/Console/Commands/Cache/CacheDeleteCommand.php index 9a65f779..3d946241 100644 --- a/src/flextype/core/Console/Commands/Cache/CacheDeleteCommand.php +++ b/src/flextype/core/Console/Commands/Cache/CacheDeleteCommand.php @@ -28,10 +28,10 @@ class CacheDeleteCommand extends Command $key = $input->getArgument('key'); if (cache()->delete($key)) { - $io->success('Key ' . $key . ' deleted.'); + $io->success('Cache item with key ' . $key . ' deleted.'); return Command::SUCCESS; } else { - $io->error('Key ' . $key . ' wasn\'t deleted.'); + $io->error('Cache item with key ' . $key . ' wasn\'t deleted.'); return Command::FAILURE; } }