Submit
Path:
~
/
/
opt
/
psa
/
admin
/
plib
/
modules
/
wp-toolkit
/
vendor
/
symfony
/
dependency-injection
/
Config
/
File Content:
ContainerParametersResourceChecker.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\DependencyInjection\Config; use WPToolkitDependenciesIsolationPrefix\Symfony\Component\Config\Resource\ResourceInterface; use WPToolkitDependenciesIsolationPrefix\Symfony\Component\Config\ResourceCheckerInterface; use WPToolkitDependenciesIsolationPrefix\Symfony\Component\DependencyInjection\ContainerInterface; /** * @author Maxime Steinhausser <maxime.steinhausser@gmail.com> */ class ContainerParametersResourceChecker implements ResourceCheckerInterface { private ContainerInterface $container; public function __construct(ContainerInterface $container) { $this->container = $container; } public function supports(ResourceInterface $metadata) : bool { return $metadata instanceof ContainerParametersResource; } 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; } }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
ContainerParametersResource.php
1061 bytes
0644
ContainerParametersResourceChecker.php
1409 bytes
0644
N4ST4R_ID | Naxtarrr