rector/vendor/symfony/config/ConfigCacheFactory.php
Tomas Votruba 0a72eb262e Updated Rector to commit 6ebf140ee5855bc9909976e95c3aaa487711fba2
6ebf140ee5 Remove psr/http-message dep on downgrade scoped (#1958)
2022-03-24 04:54:45 +00:00

47 lines
1.3 KiB
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 RectorPrefix20220324\Symfony\Component\Config;
/**
* Basic implementation of ConfigCacheFactoryInterface that
* creates an instance of the default ConfigCache.
*
* This factory and/or cache <em>do not</em> support cache validation
* by means of ResourceChecker instances (that is, service-based).
*
* @author Matthias Pigulla <mp@webfactory.de>
*/
class ConfigCacheFactory implements \RectorPrefix20220324\Symfony\Component\Config\ConfigCacheFactoryInterface
{
/**
* @var bool
*/
private $debug;
/**
* @param bool $debug The debug flag to pass to ConfigCache
*/
public function __construct(bool $debug)
{
$this->debug = $debug;
}
/**
* {@inheritdoc}
*/
public function cache(string $file, callable $callback) : \RectorPrefix20220324\Symfony\Component\Config\ConfigCacheInterface
{
$cache = new \RectorPrefix20220324\Symfony\Component\Config\ConfigCache($file, $this->debug);
if (!$cache->isFresh()) {
$callback($cache);
}
return $cache;
}
}