1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-07 05:36:54 +02:00

feat(console): add CacheClearCommand #543

This commit is contained in:
Awilum
2021-09-21 13:44:35 +03:00
parent 5f0ce1684a
commit fff0e6ebf3

View File

@@ -0,0 +1,37 @@
<?php
declare(strict_types=1);
/**
* Flextype (https://flextype.org)
* Founded by Sergey Romanenko and maintained by Flextype Community.
*/
namespace Flextype\Console\Commands\Cache;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
class CacheClearCommand extends Command
{
protected function configure(): void
{
$this->setName('cache:clear');
$this->setDescription('Completely empty the cache.');
}
protected function execute(InputInterface $input, OutputInterface $output): int
{
$io = new SymfonyStyle($input, $output);
if (cache()->clear()) {
$io->success('Cache cleared.');
return Command::SUCCESS;
} else {
$io->error('Key wasn\'t cleared.');
return Command::FAILURE;
}
}
}