src/EventListener/AuthenticationFailureListener.php line 14

  1. <?php
  2. namespace App\EventListener;
  3. use Lexik\Bundle\JWTAuthenticationBundle\Event\AuthenticationFailureEvent;
  4. use Lexik\Bundle\JWTAuthenticationBundle\Response\JWTAuthenticationFailureResponse;
  5. use Symfony\Component\HttpFoundation\JsonResponse;
  6. class AuthenticationFailureListener 
  7. {
  8.     /**
  9.      * @param AuthenticationFailureEvent $event
  10.      */
  11.     public function onAuthenticationFailureResponse(AuthenticationFailureEvent $event)
  12.     {
  13.        
  14.     }
  15. }