File manager - Edit - /var/www/payraty/helpdesk/vendor/rector/rector/vendor/symfony/dependency-injection/ParameterBag/ContainerBag.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\ParameterBag; use RectorPrefix202208\Symfony\Component\DependencyInjection\Container; /** * @author Nicolas Grekas <p@tchwork.com> */ class ContainerBag extends FrozenParameterBag implements ContainerBagInterface { /** * @var \Symfony\Component\DependencyInjection\Container */ private $container; public function __construct(Container $container) { $this->container = $container; } /** * {@inheritdoc} */ public function all() : array { return $this->container->getParameterBag()->all(); } /** * {@inheritdoc} * @return mixed[]|bool|string|int|float|\UnitEnum|null */ public function get(string $name) { return $this->container->getParameter($name); } /** * {@inheritdoc} */ public function has(string $name) : bool { return $this->container->hasParameter($name); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings