W3cubDocs

/Symfony 3.0

Symfony\Component\DependencyInjection\TaggedContainerInterface

interface TaggedContainerInterface implements ContainerInterface

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

Methods

set(string $id, object $service, string $scope = self::SCOPE_CONTAINER)

Sets a service.

from ContainerInterface
object get(string $id, int $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE)

Gets a service.

from ContainerInterface
bool has(string $id)

Returns true if the given service is defined.

from ContainerInterface
mixed getParameter(string $name)

Gets a parameter.

from ContainerInterface
bool hasParameter(string $name)

Checks if a parameter exists.

from ContainerInterface
setParameter(string $name, mixed $value)

Sets a parameter.

from ContainerInterface
enterScope(string $name)

Enters the given scope.

from ContainerInterface
leaveScope(string $name)

Leaves the current scope, and re-enters the parent scope.

from ContainerInterface
addScope(ScopeInterface $scope)

Adds a scope to the container.

from ContainerInterface
bool hasScope(string $name)

Whether this container has the given scope.

from ContainerInterface
bool isScopeActive(string $name)

Determines whether the given scope is currently active.

from ContainerInterface
array findTaggedServiceIds(string $name)

Returns service ids for a given tag.

Details

public set(string $id, object $service, string $scope = self::SCOPE_CONTAINER)

Sets a service.

Note: The $scope parameter is deprecated since version 2.8 and will be removed in 3.0.

Parameters

string $id The service identifier
object $service The service instance
string $scope The scope of the service

public object get(string $id, int $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE)

Gets a service.

Parameters

string $id The service identifier
int $invalidBehavior The behavior when the service does not exist

Return Value

object The associated service

Exceptions

ServiceCircularReferenceException When a circular reference is detected
ServiceNotFoundException When the service is not defined

See also

Reference

public bool has(string $id)

Returns true if the given service is defined.

Parameters

string $id The service identifier

Return Value

bool true if the service is defined, false otherwise

public mixed getParameter(string $name)

Gets a parameter.

Parameters

string $name The parameter name

Return Value

mixed The parameter value

Exceptions

InvalidArgumentException if the parameter is not defined

public bool hasParameter(string $name)

Checks if a parameter exists.

Parameters

string $name The parameter name

Return Value

bool The presence of parameter in container

public setParameter(string $name, mixed $value)

Sets a parameter.

Parameters

string $name The parameter name
mixed $value The parameter value

public enterScope(string $name)

Enters the given scope.

Parameters

string $name

public leaveScope(string $name)

Leaves the current scope, and re-enters the parent scope.

Parameters

string $name

public addScope(ScopeInterface $scope)

Adds a scope to the container.

Parameters

ScopeInterface $scope

public bool hasScope(string $name)

Whether this container has the given scope.

Parameters

string $name

Return Value

bool

public bool isScopeActive(string $name)

Determines whether the given scope is currently active.

It does however not check if the scope actually exists.

Parameters

string $name

Return Value

bool

public array findTaggedServiceIds(string $name)

Returns service ids for a given tag.

Parameters

string $name The tag name

Return Value

array An array of tags

© 2004–2016 Fabien Potencier
Licensed under the MIT License.
http://api.symfony.com/3.0/Symfony/Component/DependencyInjection/TaggedContainerInterface.html