src/Juki/Bundle/AppBundle/EventListener/LastLoginListener.php line 24

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Juki\Bundle\AppBundle\EventListener;
  4. use FOS\UserBundle\Event\UserEvent;
  5. use FOS\UserBundle\Model\UserInterface;
  6. use Symfony\Component\Security\Http\Event\InteractiveLoginEvent;
  7. use FOS\UserBundle\EventListener\LastLoginListener as BaseLastLoginListener;
  8. class LastLoginListener extends BaseLastLoginListener
  9. {
  10.     /**
  11.      * @param InteractiveLoginEvent $event
  12.      */
  13.     public function onSecurityInteractiveLogin(InteractiveLoginEvent $event)
  14.     {
  15.     }
  16.     /**
  17.      * @param UserEvent $event
  18.      */
  19.     public function onImplicitLogin(UserEvent $event)
  20.     {
  21.     }
  22. }