services1-1.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. namespace Symfony\Component\DependencyInjection\Dump;
  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. * This class has been auto-generated
  12. * by the Symfony Dependency Injection Component.
  13. *
  14. * @final since Symfony 3.3
  15. */
  16. class Container extends \Symfony\Component\DependencyInjection\Dump\AbstractContainer
  17. {
  18. private $parameters;
  19. private $targetDirs = array();
  20. public function __construct()
  21. {
  22. $this->services = array();
  23. $this->aliases = array();
  24. }
  25. /**
  26. * {@inheritdoc}
  27. */
  28. public function compile()
  29. {
  30. throw new LogicException('You cannot compile a dumped container that was already compiled.');
  31. }
  32. /**
  33. * {@inheritdoc}
  34. */
  35. public function isCompiled()
  36. {
  37. return true;
  38. }
  39. /**
  40. * {@inheritdoc}
  41. */
  42. public function isFrozen()
  43. {
  44. @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);
  45. return true;
  46. }
  47. }