Container::set

public Container::set($id, $service, $scope = ContainerInterface::SCOPE_CONTAINER)

Overrides Container::set

File

core/lib/Drupal/Core/DependencyInjection/Container.php, line 16

Class

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

Namespace

Drupal\Core\DependencyInjection

Code

1
2
3
4
5
6
7
8
public function set($id, $service, $scope = ContainerInterface::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;
  }
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.