Container.php in Service Container 7
File
lib/Drupal/Core/DependencyInjection/Container.php
View source
<?php
namespace Drupal\Core\DependencyInjection;
use Symfony\Component\DependencyInjection\Container as SymfonyContainer;
class Container extends SymfonyContainer {
public function set($id, $service, $scope = SymfonyContainer::SCOPE_CONTAINER) {
parent::set($id, $service, $scope);
if (isset($this->services[$id]) && is_object($this->services[$id]) && !isset($this->services[$id]->_serviceId)) {
$this->services[$id]->_serviceId = $id;
}
}
public function __sleep() {
trigger_error('The container was serialized.', E_USER_ERROR);
return array_keys(get_object_vars($this));
}
}
Classes
Name |
Description |
Container |
Extends the symfony container to set the service ID on the created object. |