Added the Search API Synonym module to deal specifically with licence and license...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / php / custom_container_class_constructor_without_arguments.php
1 <?php
2
3 namespace Symfony\Component\DependencyInjection\Tests\Fixtures\Container;
4
5 use Symfony\Component\DependencyInjection\Argument\RewindableGenerator;
6 use Symfony\Component\DependencyInjection\ContainerInterface;
7 use Symfony\Component\DependencyInjection\Container;
8 use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
9 use Symfony\Component\DependencyInjection\Exception\LogicException;
10 use Symfony\Component\DependencyInjection\Exception\RuntimeException;
11 use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag;
12
13 /**
14  * This class has been auto-generated
15  * by the Symfony Dependency Injection Component.
16  *
17  * @final since Symfony 3.3
18  */
19 class ProjectServiceContainer extends \Symfony\Component\DependencyInjection\Tests\Fixtures\Container\ConstructorWithoutArgumentsContainer
20 {
21     private $parameters;
22     private $targetDirs = array();
23
24     public function __construct()
25     {
26         parent::__construct();
27         $this->parameterBag = null;
28
29         $this->services = array();
30
31         $this->aliases = array();
32     }
33
34     public function getRemovedIds()
35     {
36         return array(
37             'Psr\\Container\\ContainerInterface' => true,
38             'Symfony\\Component\\DependencyInjection\\ContainerInterface' => true,
39         );
40     }
41
42     public function compile()
43     {
44         throw new LogicException('You cannot compile a dumped container that was already compiled.');
45     }
46
47     public function isCompiled()
48     {
49         return true;
50     }
51
52     public function isFrozen()
53     {
54         @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);
55
56         return true;
57     }
58 }