132 lines
4.2 KiB
PHP
Executable File
132 lines
4.2 KiB
PHP
Executable File
<?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;
|
||
use Symfony\Component\DependencyInjection\ParameterBag\ParameterBagInterface;
|
||
|
||
/**
|
||
* This class has been auto-generated
|
||
* by the Symfony Dependency Injection Component.
|
||
*
|
||
* @final
|
||
*/
|
||
class ProjectServiceContainer extends Container
|
||
{
|
||
private $parameters = [];
|
||
|
||
public function __construct()
|
||
{
|
||
$this->parameters = $this->getDefaultParameters();
|
||
|
||
$this->services = $this->privates = [];
|
||
|
||
$this->aliases = [];
|
||
}
|
||
|
||
public function compile(): void
|
||
{
|
||
throw new LogicException('You cannot compile a dumped container that was already compiled.');
|
||
}
|
||
|
||
public function isCompiled(): bool
|
||
{
|
||
return true;
|
||
}
|
||
|
||
public function getRemovedIds(): array
|
||
{
|
||
return [
|
||
'Psr\\Container\\ContainerInterface' => true,
|
||
'Symfony\\Component\\DependencyInjection\\ContainerInterface' => true,
|
||
];
|
||
}
|
||
|
||
/**
|
||
* @return array|bool|float|int|string|\UnitEnum|null
|
||
*/
|
||
public function getParameter($name)
|
||
{
|
||
$name = (string) $name;
|
||
|
||
if (!(isset($this->parameters[$name]) || isset($this->loadedDynamicParameters[$name]) || array_key_exists($name, $this->parameters))) {
|
||
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];
|
||
}
|
||
|
||
public function hasParameter($name): bool
|
||
{
|
||
$name = (string) $name;
|
||
|
||
return isset($this->parameters[$name]) || isset($this->loadedDynamicParameters[$name]) || array_key_exists($name, $this->parameters);
|
||
}
|
||
|
||
public function setParameter($name, $value): void
|
||
{
|
||
throw new LogicException('Impossible to call set() on a frozen ParameterBag.');
|
||
}
|
||
|
||
public function getParameterBag(): ParameterBagInterface
|
||
{
|
||
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 = [];
|
||
private $dynamicParameters = [];
|
||
|
||
private function getDynamicParameter(string $name)
|
||
{
|
||
throw new InvalidArgumentException(sprintf('The dynamic parameter "%s" must be defined.', $name));
|
||
}
|
||
|
||
protected function getDefaultParameters(): array
|
||
{
|
||
return [
|
||
'foo' => 'bar',
|
||
'baz' => 'bar',
|
||
'bar' => 'foo is %foo bar',
|
||
'escape' => '@escapeme',
|
||
'values' => [
|
||
0 => true,
|
||
1 => false,
|
||
2 => NULL,
|
||
3 => 0,
|
||
4 => 1000.3,
|
||
5 => 'true',
|
||
6 => 'false',
|
||
7 => 'null',
|
||
],
|
||
'binary' => '<27><><EFBFBD><EFBFBD>',
|
||
'binary-control-char' => 'This is a Bell char ',
|
||
'null string' => 'null',
|
||
'string of digits' => '123',
|
||
'string of digits prefixed with minus character' => '-123',
|
||
'true string' => 'true',
|
||
'false string' => 'false',
|
||
'binary number string' => '0b0110',
|
||
'numeric string' => '-1.2E2',
|
||
'hexadecimal number string' => '0xFF',
|
||
'float string' => '10100.1',
|
||
'positive float string' => '+10100.1',
|
||
'negative float string' => '-10100.1',
|
||
];
|
||
}
|
||
}
|