services33.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?php
  2. use Symfony\Component\DependencyInjection\Argument\RewindableGenerator;
  3. use Symfony\Component\DependencyInjection\ContainerInterface;
  4. use Symfony\Component\DependencyInjection\Container;
  5. use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
  6. use Symfony\Component\DependencyInjection\Exception\LogicException;
  7. use Symfony\Component\DependencyInjection\Exception\RuntimeException;
  8. use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag;
  9. /**
  10. * This class has been auto-generated
  11. * by the Symfony Dependency Injection Component.
  12. *
  13. * @final since Symfony 3.3
  14. */
  15. class ProjectServiceContainer extends Container
  16. {
  17. private $parameters;
  18. private $targetDirs = array();
  19. public function __construct()
  20. {
  21. $this->services = array();
  22. $this->normalizedIds = array(
  23. 'symfony\\component\\dependencyinjection\\tests\\fixtures\\container33\\foo' => 'Symfony\\Component\\DependencyInjection\\Tests\\Fixtures\\Container33\\Foo',
  24. );
  25. $this->methodMap = array(
  26. 'Symfony\\Component\\DependencyInjection\\Tests\\Fixtures\\Container33\\Foo' => 'getSymfony_Component_DependencyInjection_Tests_Fixtures_Container33_FooService',
  27. );
  28. $this->aliases = array();
  29. }
  30. /**
  31. * {@inheritdoc}
  32. */
  33. public function compile()
  34. {
  35. throw new LogicException('You cannot compile a dumped container that was already compiled.');
  36. }
  37. /**
  38. * {@inheritdoc}
  39. */
  40. public function isCompiled()
  41. {
  42. return true;
  43. }
  44. /**
  45. * {@inheritdoc}
  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. return true;
  51. }
  52. /**
  53. * Gets the public 'Symfony\Component\DependencyInjection\Tests\Fixtures\Container33\Foo' shared service.
  54. *
  55. * @return \Symfony\Component\DependencyInjection\Tests\Fixtures\Container33\Foo
  56. */
  57. protected function getSymfony_Component_DependencyInjection_Tests_Fixtures_Container33_FooService()
  58. {
  59. return $this->services['Symfony\Component\DependencyInjection\Tests\Fixtures\Container33\Foo'] = new \Symfony\Component\DependencyInjection\Tests\Fixtures\Container33\Foo();
  60. }
  61. }