File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/symfony/dependency-injection/Config/ContainerParametersResourceChecker.php
Back
<?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 RectorPrefix202208\Symfony\Component\DependencyInjection\Config; use RectorPrefix202208\Symfony\Component\Config\Resource\ResourceInterface; use RectorPrefix202208\Symfony\Component\Config\ResourceCheckerInterface; use RectorPrefix202208\Symfony\Component\DependencyInjection\ContainerInterface; /** * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ class ContainerParametersResourceChecker implements ResourceCheckerInterface { /** * @var \Symfony\Component\DependencyInjection\ContainerInterface */ private $container; public function __construct(ContainerInterface $container) { $this->container = $container; } /** * {@inheritdoc} */ public function supports(ResourceInterface $metadata) : bool { return $metadata instanceof ContainerParametersResource; } /** * {@inheritdoc} */ public function isFresh(ResourceInterface $resource, int $timestamp) : bool { foreach ($resource->getParameters() as $key => $value) { if (!$this->container->hasParameter($key) || $this->container->getParameter($key) !== $value) { return \false; } } return \true; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings