You are here

interface TaggedContainerInterface in Service Container 7.2

Same name and namespace in other branches
  1. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/TaggedContainerInterface.php \Symfony\Component\DependencyInjection\TaggedContainerInterface

TaggedContainerInterface is the interface implemented when a container knows how to deals with tags.

@author Fabien Potencier <fabien@symfony.com>

@api

Hierarchy

  • interface \Symfony\Component\DependencyInjection\TaggedContainerInterface extends \Symfony\Component\DependencyInjection\ContainerInterface

Expanded class hierarchy of TaggedContainerInterface

All classes that implement TaggedContainerInterface

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/TaggedContainerInterface.php, line 21

Namespace

Symfony\Component\DependencyInjection
View source
interface TaggedContainerInterface extends ContainerInterface {

  /**
   * Returns service ids for a given tag.
   *
   * @param string $name The tag name
   *
   * @return array An array of tags
   *
   * @api
   */
  public function findTaggedServiceIds($name);

}

Members

Namesort descending Modifiers Type Description Overrides
TaggedContainerInterface::findTaggedServiceIds public function Returns service ids for a given tag. 1