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