protected UpdateKernel::shutdownSession(Request $request)
Ensures that the session is saved.
Parameters
\Symfony\Component\HttpFoundation\Request $request: The incoming request.
File
- core/lib/Drupal/Core/Update/UpdateKernel.php, line 136
Class
- UpdateKernel
- Defines a kernel which is used primarily to run the update of Drupal.
Namespace
Drupal\Core\Update
Code
1 2 3 4 5 | protected function shutdownSession(Request $request ) { if ( $request ->hasSession()) { $request ->getSession()->save(); } } |
Please login to continue.