142 lines
4.4 KiB
PHP
Executable File
142 lines
4.4 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 = [
|
|
'service_from_anonymous_factory' => 'getServiceFromAnonymousFactoryService',
|
|
'service_with_method_call_and_factory' => 'getServiceWithMethodCallAndFactoryService',
|
|
];
|
|
|
|
$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 'service_from_anonymous_factory' shared service.
|
|
*
|
|
* @return object A %env(FOO)% instance
|
|
*/
|
|
protected function getServiceFromAnonymousFactoryService()
|
|
{
|
|
return $this->services['service_from_anonymous_factory'] = (new ${($_ = $this->getEnv('FOO')) && false ?: "_"}())->getInstance();
|
|
}
|
|
|
|
/**
|
|
* Gets the public 'service_with_method_call_and_factory' shared service.
|
|
*
|
|
* @return \Bar\FooClass
|
|
*/
|
|
protected function getServiceWithMethodCallAndFactoryService()
|
|
{
|
|
$this->services['service_with_method_call_and_factory'] = $instance = new \Bar\FooClass();
|
|
|
|
$instance->setBar(\Bar\FooClass::getInstance());
|
|
|
|
return $instance;
|
|
}
|
|
|
|
/**
|
|
* @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 = [
|
|
'foo' => false,
|
|
];
|
|
private $dynamicParameters = [];
|
|
|
|
private function getDynamicParameter(string $name)
|
|
{
|
|
switch ($name) {
|
|
case 'foo': $value = $this->getEnv('FOO'); break;
|
|
default: throw new InvalidArgumentException(sprintf('The dynamic parameter "%s" must be defined.', $name));
|
|
}
|
|
$this->loadedDynamicParameters[$name] = true;
|
|
|
|
return $this->dynamicParameters[$name] = $value;
|
|
}
|
|
|
|
protected function getDefaultParameters(): array
|
|
{
|
|
return [
|
|
'env(FOO)' => 'Bar\\FaooClass',
|
|
];
|
|
}
|
|
}
|