interface IntrospectableContainerInterface in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/IntrospectableContainerInterface.php \Symfony\Component\DependencyInjection\IntrospectableContainerInterface
IntrospectableContainerInterface defines additional introspection functionality for containers, allowing logic to be implemented based on a Container's state.
@author Evan Villemez <evillemez@gmail.com>
Hierarchy
- interface \Symfony\Component\DependencyInjection\ContainerInterface
- interface \Symfony\Component\DependencyInjection\IntrospectableContainerInterface
Expanded class hierarchy of IntrospectableContainerInterface
All classes that implement IntrospectableContainerInterface
2 files declare their use of IntrospectableContainerInterface
- Container.php in core/
lib/ Drupal/ Component/ DependencyInjection/ Container.php - Contains \Drupal\Component\DependencyInjection\Container.
- ContainerAwareEventDispatcher.php in core/
lib/ Drupal/ Component/ EventDispatcher/ ContainerAwareEventDispatcher.php - Contains \Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher.
File
- vendor/
symfony/ dependency-injection/ IntrospectableContainerInterface.php, line 20
Namespace
Symfony\Component\DependencyInjectionView source
interface IntrospectableContainerInterface extends ContainerInterface {
/**
* Check for whether or not a service has been initialized.
*
* @param string $id
*
* @return bool true if the service has been initialized, false otherwise
*/
public function initialized($id);
}
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 |
IntrospectableContainerInterface:: |
public | function | Check for whether or not a service has been initialized. | 2 |