src/EventSubscriber/LogoutSubscriber.php line 24

Open in your IDE?
  1. <?php
  2. /*
  3.  * Created on Fri Dec 02 2022
  4.  *
  5.  * DAVID-OLIVIER DESCOMBES
  6.  *
  7.  * @licence
  8.  * You may not sell, sub-license, rent or lease any portion of the Software or Documentation to anyone.
  9.  *
  10.  * Copyright (c) 2022 dodarchitecte.com (https://dodarchitecte.com)
  11.  *
  12.  * Developed by developpeur-informatique.ma (https://www.developpeur-informatique.ma)
  13.  */
  14. namespace App\EventSubscriber;
  15. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  16. use Symfony\Component\HttpFoundation\JsonResponse;
  17. use Symfony\Component\HttpFoundation\Response;
  18. use Symfony\Component\Security\Http\Event\LogoutEvent;
  19. class LogoutSubscriber implements EventSubscriberInterface
  20. {
  21.     public function onLogoutEvent(LogoutEvent $event)
  22.     {
  23.        if (in_array('application/json'$event->getRequest()->getAcceptableContentTypes(), true)) {
  24.            $event->setResponse(new JsonResponse(nullResponse::HTTP_NO_CONTENT));
  25.        }
  26.     }
  27.     public static function getSubscribedEvents(): array
  28.     {
  29.         return [
  30.             LogoutEvent::class => 'onLogoutEvent',
  31.         ];
  32.     }
  33. }