172 lines
5.7 KiB
PHP
172 lines
5.7 KiB
PHP
<?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()
|
|
{
|
|
$dir = __DIR__;
|
|
for ($i = 1; $i <= 5; ++$i) {
|
|
$this->targetDirs[$i] = $dir = \dirname($dir);
|
|
}
|
|
$this->parameters = $this->getDefaultParameters();
|
|
|
|
$this->services = array();
|
|
$this->methodMap = array(
|
|
'test' => 'getTestService',
|
|
);
|
|
|
|
$this->aliases = array();
|
|
}
|
|
|
|
public function getRemovedIds()
|
|
{
|
|
return array(
|
|
'Psr\\Container\\ContainerInterface' => true,
|
|
'Symfony\\Component\\DependencyInjection\\ContainerInterface' => true,
|
|
);
|
|
}
|
|
|
|
public function compile()
|
|
{
|
|
throw new LogicException('You cannot compile a dumped container that was already compiled.');
|
|
}
|
|
|
|
public function isCompiled()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
/**
|
|
* Gets the public 'test' shared service.
|
|
*
|
|
* @return \stdClass
|
|
*/
|
|
protected function getTestService()
|
|
{
|
|
return $this->services['test'] = new \stdClass(('wiz'.$this->targetDirs[1]), array(('wiz'.$this->targetDirs[1]) => ($this->targetDirs[2].'/')));
|
|
}
|
|
|
|
public function getParameter($name)
|
|
{
|
|
$name = (string) $name;
|
|
if (!(isset($this->parameters[$name]) || isset($this->loadedDynamicParameters[$name]) || array_key_exists($name, $this->parameters))) {
|
|
$name = $this->normalizeParameterName($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)
|
|
{
|
|
$name = (string) $name;
|
|
$name = $this->normalizeParameterName($name);
|
|
|
|
return isset($this->parameters[$name]) || isset($this->loadedDynamicParameters[$name]) || array_key_exists($name, $this->parameters);
|
|
}
|
|
|
|
public function setParameter($name, $value)
|
|
{
|
|
throw new LogicException('Impossible to call set() on a frozen ParameterBag.');
|
|
}
|
|
|
|
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(
|
|
'foo' => false,
|
|
'buz' => false,
|
|
);
|
|
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)
|
|
{
|
|
switch ($name) {
|
|
case 'foo': $value = ('wiz'.$this->targetDirs[1]); break;
|
|
case 'buz': $value = $this->targetDirs[2]; break;
|
|
default: throw new InvalidArgumentException(sprintf('The dynamic parameter "%s" must be defined.', $name));
|
|
}
|
|
$this->loadedDynamicParameters[$name] = true;
|
|
|
|
return $this->dynamicParameters[$name] = $value;
|
|
}
|
|
|
|
private $normalizedParameterNames = array();
|
|
|
|
private function normalizeParameterName($name)
|
|
{
|
|
if (isset($this->normalizedParameterNames[$normalizedName = strtolower($name)]) || isset($this->parameters[$normalizedName]) || array_key_exists($normalizedName, $this->parameters)) {
|
|
$normalizedName = isset($this->normalizedParameterNames[$normalizedName]) ? $this->normalizedParameterNames[$normalizedName] : $normalizedName;
|
|
if ((string) $name !== $normalizedName) {
|
|
@trigger_error(sprintf('Parameter names will be made case sensitive in Symfony 4.0. Using "%s" instead of "%s" is deprecated since Symfony 3.4.', $name, $normalizedName), E_USER_DEPRECATED);
|
|
}
|
|
} else {
|
|
$normalizedName = $this->normalizedParameterNames[$normalizedName] = (string) $name;
|
|
}
|
|
|
|
return $normalizedName;
|
|
}
|
|
|
|
/**
|
|
* Gets the default parameters.
|
|
*
|
|
* @return array An array of the default parameters
|
|
*/
|
|
protected function getDefaultParameters()
|
|
{
|
|
return array(
|
|
'bar' => __DIR__,
|
|
'baz' => (__DIR__.'/PhpDumperTest.php'),
|
|
);
|
|
}
|
|
}
|