interface TaggedContainerInterface in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/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>
Hierarchy
- interface \Symfony\Component\DependencyInjection\ContainerInterface
- interface \Symfony\Component\DependencyInjection\TaggedContainerInterface
Expanded class hierarchy of TaggedContainerInterface
All classes that implement TaggedContainerInterface
File
- vendor/
symfony/ dependency-injection/ TaggedContainerInterface.php, line 19
Namespace
Symfony\Component\DependencyInjectionView source
interface TaggedContainerInterface extends ContainerInterface {
/**
* Returns service ids for a given tag.
*
* @param string $name The tag name
*
* @return array An array of tags
*/
public function findTaggedServiceIds($name);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ContainerInterface:: |
public | function | Adds a scope to the container. | 2 |
ContainerInterface:: |
public | function | Enters the given scope. | 2 |
ContainerInterface:: |
constant | |||
ContainerInterface:: |
public | function | Gets a service. | 3 |
ContainerInterface:: |
public | function | Gets a parameter. | 2 |
ContainerInterface:: |
public | function | Returns true if the given service is defined. | 3 |
ContainerInterface:: |
public | function | Checks if a parameter exists. | 2 |
ContainerInterface:: |
public | function | Whether this container has the given scope. | 2 |
ContainerInterface:: |
constant | |||
ContainerInterface:: |
public | function | Determines whether the given scope is currently active. | 2 |
ContainerInterface:: |
public | function | Leaves the current scope, and re-enters the parent scope. | 2 |
ContainerInterface:: |
constant | |||
ContainerInterface:: |
constant | |||
ContainerInterface:: |
constant | |||
ContainerInterface:: |
public | function | Sets a service. | 3 |
ContainerInterface:: |
public | function | Sets a parameter. | 3 |
TaggedContainerInterface:: |
public | function | Returns service ids for a given tag. | 1 |