You are here

public function IntrospectableContainerInterface::initialized in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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\DependencyInjection

Code

public function initialized($id);