Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Fixtures / php / custom_container_class_with_mandatory_constructor_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\ConstructorWithMandatoryArgumentsContainer
20 {
21     private $parameters;
22     private $targetDirs = array();
23
24     public function __construct()
25     {
26         $this->services = array();
27
28         $this->aliases = array();
29     }
30
31     public function getRemovedIds()
32     {
33         return array(
34             'Psr\\Container\\ContainerInterface' => true,
35             'Symfony\\Component\\DependencyInjection\\ContainerInterface' => true,
36         );
37     }
38
39     public function compile()
40     {
41         throw new LogicException('You cannot compile a dumped container that was already compiled.');
42     }
43
44     public function isCompiled()
45     {
46         return true;
47     }
48
49     public function isFrozen()
50     {
51         @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);
52
53         return true;
54     }
55 }