src/EventSubscriber/LexikSubscriber.php line 22

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 Lexik\Bundle\JWTAuthenticationBundle\Event\JWTCreatedEvent;
  16. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  17. class LexikSubscriber implements EventSubscriberInterface
  18. {
  19.     public function onLexikJwtAuthenticationOnJwtCreated(JWTCreatedEvent $event): void
  20.     {
  21.       
  22.     }
  23.     public static function getSubscribedEvents(): array
  24.     {
  25.         return [
  26.             'lexik_jwt_authentication.on_jwt_created' => 'onLexikJwtAuthenticationOnJwtCreated',
  27.         ];
  28.     }
  29. }