public function IntrospectableContainerInterface::initialized in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/dependency-injection/IntrospectableContainerInterface.php \Symfony\Component\DependencyInjection\IntrospectableContainerInterface::initialized()
Check for whether or not a service has been initialized.
Parameters
string $id:
Return value
bool true if the service has been initialized, false otherwise
2 methods override IntrospectableContainerInterface::initialized()
- Container::initialized in vendor/
symfony/ dependency-injection/ Container.php - Returns true if the given service has actually been initialized.
- Container::initialized in core/
lib/ Drupal/ Component/ DependencyInjection/ Container.php - Check for whether or not a service has been initialized.
File
- vendor/
symfony/ dependency-injection/ IntrospectableContainerInterface.php, line 29
Class
- IntrospectableContainerInterface
- IntrospectableContainerInterface defines additional introspection functionality for containers, allowing logic to be implemented based on a Container's state.
Namespace
Symfony\Component\DependencyInjectionCode
public function initialized($id);