| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <?php
- use Symfony\Component\DependencyInjection\Argument\RewindableGenerator;
- use Symfony\Component\DependencyInjection\ContainerInterface;
- use Symfony\Component\DependencyInjection\Container;
- use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
- use Symfony\Component\DependencyInjection\Exception\LogicException;
- use Symfony\Component\DependencyInjection\Exception\RuntimeException;
- use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag;
- /**
- * This class has been auto-generated
- * by the Symfony Dependency Injection Component.
- *
- * @final since Symfony 3.3
- */
- class ProjectServiceContainer extends Container
- {
- private $parameters;
- private $targetDirs = array();
- public function __construct()
- {
- $this->parameters = $this->getDefaultParameters();
- $this->services = array();
- $this->aliases = array();
- }
- /**
- * {@inheritdoc}
- */
- public function compile()
- {
- throw new LogicException('You cannot compile a dumped container that was already compiled.');
- }
- /**
- * {@inheritdoc}
- */
- public function isCompiled()
- {
- return true;
- }
- /**
- * {@inheritdoc}
- */
- public function isFrozen()
- {
- @trigger_error(sprintf('The %s() method is deprecated since Symfony 3.3 and will be removed in 4.0. Use the isCompiled() method instead.', __METHOD__), E_USER_DEPRECATED);
- return true;
- }
- /**
- * {@inheritdoc}
- */
- public function getParameter($name)
- {
- $name = strtolower($name);
- if (!(isset($this->parameters[$name]) || array_key_exists($name, $this->parameters) || isset($this->loadedDynamicParameters[$name]))) {
- throw new InvalidArgumentException(sprintf('The parameter "%s" must be defined.', $name));
- }
- if (isset($this->loadedDynamicParameters[$name])) {
- return $this->loadedDynamicParameters[$name] ? $this->dynamicParameters[$name] : $this->getDynamicParameter($name);
- }
- return $this->parameters[$name];
- }
- /**
- * {@inheritdoc}
- */
- public function hasParameter($name)
- {
- $name = strtolower($name);
- return isset($this->parameters[$name]) || array_key_exists($name, $this->parameters) || isset($this->loadedDynamicParameters[$name]);
- }
- /**
- * {@inheritdoc}
- */
- public function setParameter($name, $value)
- {
- throw new LogicException('Impossible to call set() on a frozen ParameterBag.');
- }
- /**
- * {@inheritdoc}
- */
- public function getParameterBag()
- {
- if (null === $this->parameterBag) {
- $parameters = $this->parameters;
- foreach ($this->loadedDynamicParameters as $name => $loaded) {
- $parameters[$name] = $loaded ? $this->dynamicParameters[$name] : $this->getDynamicParameter($name);
- }
- $this->parameterBag = new FrozenParameterBag($parameters);
- }
- return $this->parameterBag;
- }
- private $loadedDynamicParameters = array();
- private $dynamicParameters = array();
- /**
- * Computes a dynamic parameter.
- *
- * @param string The name of the dynamic parameter to load
- *
- * @return mixed The value of the dynamic parameter
- *
- * @throws InvalidArgumentException When the dynamic parameter does not exist
- */
- private function getDynamicParameter($name)
- {
- throw new InvalidArgumentException(sprintf('The dynamic parameter "%s" must be defined.', $name));
- }
- /**
- * Gets the default parameters.
- *
- * @return array An array of the default parameters
- */
- protected function getDefaultParameters()
- {
- return array(
- 'foo' => 'bar',
- 'baz' => 'bar',
- 'bar' => 'foo is %foo bar',
- 'escape' => '@escapeme',
- 'values' => array(
- 0 => true,
- 1 => false,
- 2 => NULL,
- 3 => 0,
- 4 => 1000.3,
- 5 => 'true',
- 6 => 'false',
- 7 => 'null',
- ),
- );
- }
- }
|