This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1-1.php

56 lines
1.5 KiB
PHP
Raw Normal View History

2010-01-04 14:26:20 +00:00
<?php
2017-05-07 17:03:57 +01:00
namespace Symfony\Component\DependencyInjection\Dump;
2010-01-04 14:26:20 +00:00
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;
2010-01-04 14:26:20 +00:00
/**
* This class has been auto-generated
* by the Symfony Dependency Injection Component.
*
* @final since Symfony 3.3
2010-01-04 14:26:20 +00:00
*/
class Container extends \Symfony\Component\DependencyInjection\Dump\AbstractContainer
2010-01-04 14:26:20 +00:00
{
private $parameters;
private $targetDirs = array();
private $privates = array();
2010-06-27 17:28:29 +01:00
public function __construct()
{
$this->services = $this->privates = array();
$this->aliases = array();
}
2017-07-24 15:06:58 +01:00
public function reset()
{
$this->privates = array();
parent::reset();
}
public function compile()
{
throw new LogicException('You cannot compile a dumped container that was already compiled.');
}
public function isCompiled()
{
return true;
}
public function getRemovedIds()
{
return array(
'Psr\\Container\\ContainerInterface' => true,
'Symfony\\Component\\DependencyInjection\\ContainerInterface' => true,
);
2010-06-27 17:28:29 +01:00
}
2010-01-04 14:26:20 +00:00
}