protected function UpdateKernel::shutdownSession in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Update/UpdateKernel.php \Drupal\Core\Update\UpdateKernel::shutdownSession()
Ensures that the session is saved.
Parameters
\Symfony\Component\HttpFoundation\Request $request: The incoming request.
1 call to UpdateKernel::shutdownSession()
- UpdateKernel::handle in core/
lib/ Drupal/ Core/ Update/ UpdateKernel.php
File
- core/
lib/ Drupal/ Core/ Update/ UpdateKernel.php, line 140
Class
- UpdateKernel
- Defines a kernel which is used primarily to run the update of Drupal.
Namespace
Drupal\Core\UpdateCode
protected function shutdownSession(Request $request) {
if ($request
->hasSession()) {
$request
->getSession()
->save();
}
}