public function UserServiceProvider::alter in Drupal 8
Modifies existing service definitions.
Parameters
ContainerBuilder $container: The ContainerBuilder whose service definitions can be altered.
Overrides ServiceModifierInterface::alter
File
- core/
modules/ user/ src/ UserServiceProvider.php, line 13
Class
Namespace
Drupal\userCode
public function alter(ContainerBuilder $container) {
if ($container
->hasParameter('user.tempstore.expire')) {
@trigger_error('The container parameter "user.tempstore.expire" is deprecated. Use "tempstore.expire" instead. See https://www.drupal.org/node/2935639.', E_USER_DEPRECATED);
$container
->setParameter('tempstore.expire', $container
->getParameter('user.tempstore.expire'));
}
else {
// Ensure the user.tempstore.expire parameter is set to the same value
// for modules that still rely on it.
$container
->setParameter('user.tempstore.expire', $container
->getParameter('tempstore.expire'));
}
}