Chris@0: hasParameter('user.tempstore.expire')) { Chris@14: @trigger_error('The container parameter "user.tempstore.expire" is deprecated. Use "tempstore.expire" instead. See https://www.drupal.org/node/2935639.', E_USER_DEPRECATED); Chris@14: $container->setParameter('tempstore.expire', $container->getParameter('user.tempstore.expire')); Chris@14: } Chris@14: else { Chris@14: // Ensure the user.tempstore.expire parameter is set to the same value Chris@14: // for modules that still rely on it. Chris@14: $container->setParameter('user.tempstore.expire', $container->getParameter('tempstore.expire')); Chris@14: } Chris@14: } Chris@14: Chris@14: }