vendor/symfony/http-kernel/EventListener/SaveSessionListener.php line 14

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\HttpKernel\EventListener;
  11. @trigger_error(sprintf('The "%s" class is deprecated since Symfony 4.1, use AbstractSessionListener instead.'SaveSessionListener::class), \E_USER_DEPRECATED);
  12. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  13. use Symfony\Component\HttpKernel\Event\FilterResponseEvent;
  14. use Symfony\Component\HttpKernel\KernelEvents;
  15. /**
  16.  * @author Tobias Schultze <http://tobion.de>
  17.  *
  18.  * @deprecated since Symfony 4.1, use AbstractSessionListener instead
  19.  */
  20. class SaveSessionListener implements EventSubscriberInterface
  21. {
  22.     public function onKernelResponse(FilterResponseEvent $event)
  23.     {
  24.         if (!$event->isMasterRequest()) {
  25.             return;
  26.         }
  27.         $request $event->getRequest();
  28.         if ($request->hasSession() && ($session $request->getSession())->isStarted()) {
  29.             $session->save();
  30.         }
  31.     }
  32.     public static function getSubscribedEvents()
  33.     {
  34.         return [
  35.             // low priority but higher than StreamedResponseListener
  36.             KernelEvents::RESPONSE => [['onKernelResponse', -1000]],
  37.         ];
  38.     }
  39. }