120 lines
4.0 KiB
PHP
Executable File
120 lines
4.0 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->methodMap = [
|
|
'test' => 'getTestService',
|
|
];
|
|
|
|
$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,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Gets the public 'test' shared service.
|
|
*
|
|
* @return \stdClass
|
|
*/
|
|
protected function getTestService()
|
|
{
|
|
return $this->services['test'] = new \stdClass(['only dot' => '.', 'concatenation as value' => '.\'\'.', 'concatenation from the start value' => '\'\'.', '.' => 'dot as a key', '.\'\'.' => 'concatenation as a key', '\'\'.' => 'concatenation from the start key', 'optimize concatenation' => 'string1-string2', 'optimize concatenation with empty string' => 'string1string2', 'optimize concatenation from the start' => 'start', 'optimize concatenation at the end' => 'end', 'new line' => 'string with '."\n".'new line']);
|
|
}
|
|
|
|
/**
|
|
* @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 [
|
|
'empty_value' => '',
|
|
'some_string' => '-',
|
|
];
|
|
}
|
|
}
|