services1-1.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. use Symfony\Component\DependencyInjection\ContainerInterface;
  3. use Symfony\Component\DependencyInjection\TaggedContainerInterface;
  4. use Symfony\Component\DependencyInjection\Container;
  5. use Symfony\Component\DependencyInjection\Reference;
  6. use Symfony\Component\DependencyInjection\Parameter;
  7. use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag;
  8. /**
  9. * Container
  10. *
  11. * This class has been auto-generated
  12. * by the Symfony Dependency Injection Component.
  13. */
  14. class Container extends AbstractContainer implements TaggedContainerInterface
  15. {
  16. protected $shared = array();
  17. /**
  18. * Constructor.
  19. */
  20. public function __construct()
  21. {
  22. parent::__construct(new ParameterBag($this->getDefaultParameters()));
  23. }
  24. /**
  25. * Returns service ids for a given tag.
  26. *
  27. * @param string $name The tag name
  28. *
  29. * @return array An array of tags
  30. */
  31. public function findTaggedServiceIds($name)
  32. {
  33. static $tags = array (
  34. );
  35. return isset($tags[$name]) ? $tags[$name] : array();
  36. }
  37. }