From c009b6dceed3c503757a467063fa6ceb2247cfab Mon Sep 17 00:00:00 2001 From: Awilum Date: Fri, 29 Apr 2022 16:38:18 +0300 Subject: [PATCH] feat(console): improve `cache:set` logic --- src/flextype/core/Console/Commands/Cache/CacheSetCommand.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/flextype/core/Console/Commands/Cache/CacheSetCommand.php b/src/flextype/core/Console/Commands/Cache/CacheSetCommand.php index 802102b4..30e7ac06 100644 --- a/src/flextype/core/Console/Commands/Cache/CacheSetCommand.php +++ b/src/flextype/core/Console/Commands/Cache/CacheSetCommand.php @@ -37,8 +37,6 @@ class CacheSetCommand extends Command protected function execute(InputInterface $input, OutputInterface $output): int { - $io = new SymfonyStyle($input, $output); - $key = $input->getArgument('key'); $value = $input->getArgument('value'); $ttl = $input->getArgument('ttl') ?? 300;