From 0cfa75ea820ca0fd3a471aed03e50db18d384e00 Mon Sep 17 00:00:00 2001 From: Awilum Date: Tue, 21 Sep 2021 14:15:48 +0300 Subject: [PATCH] feat(console): update CacheClearCommand #543 --- src/flextype/core/Console/Commands/Cache/CacheClearCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/flextype/core/Console/Commands/Cache/CacheClearCommand.php b/src/flextype/core/Console/Commands/Cache/CacheClearCommand.php index 72e44288..7ce16aab 100644 --- a/src/flextype/core/Console/Commands/Cache/CacheClearCommand.php +++ b/src/flextype/core/Console/Commands/Cache/CacheClearCommand.php @@ -30,7 +30,7 @@ class CacheClearCommand extends Command $io->success('Cache cleared.'); return Command::SUCCESS; } else { - $io->error('Key wasn\'t cleared.'); + $io->error('Cache wasn\'t cleared.'); return Command::FAILURE; } }