You are here

public function Container::set in Service Container 7

Same name in this branch
  1. 7 lib/Drupal/Core/DependencyInjection/Container.php \Drupal\Core\DependencyInjection\Container::set()
  2. 7 lib/Drupal/Component/DependencyInjection/Container.php \Drupal\Component\DependencyInjection\Container::set()
  3. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Container.php \Symfony\Component\DependencyInjection\Container::set()
Same name and namespace in other branches
  1. 7.2 lib/Drupal/Core/DependencyInjection/Container.php \Drupal\Core\DependencyInjection\Container::set()

File

lib/Drupal/Core/DependencyInjection/Container.php, line 20
Contains \Drupal\Core\DependencyInjection\Container.

Class

Container
Extends the symfony container to set the service ID on the created object.

Namespace

Drupal\Core\DependencyInjection

Code

public function set($id, $service, $scope = SymfonyContainer::SCOPE_CONTAINER) {
  parent::set($id, $service, $scope);

  // Ensure that the _serviceId property is set on synthetic services as well.
  if (isset($this->services[$id]) && is_object($this->services[$id]) && !isset($this->services[$id]->_serviceId)) {
    $this->services[$id]->_serviceId = $id;
  }
}