Submit
Path:
~
/
/
proc
/
self
/
root
/
opt
/
psa
/
admin
/
plib
/
modules
/
wp-toolkit
/
vendor
/
symfony
/
cache
/
DependencyInjection
/
File Content:
CachePoolClearerPass.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 WPToolkitDependenciesIsolationPrefix\Symfony\Component\Cache\DependencyInjection; use WPToolkitDependenciesIsolationPrefix\Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; use WPToolkitDependenciesIsolationPrefix\Symfony\Component\DependencyInjection\ContainerBuilder; use WPToolkitDependenciesIsolationPrefix\Symfony\Component\DependencyInjection\Reference; /** * @author Nicolas Grekas <p@tchwork.com> */ class CachePoolClearerPass implements CompilerPassInterface { public function process(ContainerBuilder $container) : void { $container->getParameterBag()->remove('cache.prefix.seed'); foreach ($container->findTaggedServiceIds('cache.pool.clearer') as $id => $attr) { $clearer = $container->getDefinition($id); $pools = []; foreach ($clearer->getArgument(0) as $name => $ref) { if ($container->hasDefinition($ref)) { $pools[$name] = new Reference($ref); } } $clearer->replaceArgument(0, $pools); } } }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
CacheCollectorPass.php
3201 bytes
0644
CachePoolClearerPass.php
1327 bytes
0644
CachePoolPass.php
10407 bytes
0644
CachePoolPrunerPass.php
1944 bytes
0644
N4ST4R_ID | Naxtarrr