| 1 | <?php |
||
| 16 | class SecuritySubscriber implements EventSubscriberInterface |
||
| 17 | { |
||
| 18 | /** |
||
| 19 | * @var LastLoginProcessor |
||
| 20 | */ |
||
| 21 | private $lastLoginProcessor; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param LastLoginProcessor $lastLoginProcessor |
||
| 25 | */ |
||
| 26 | public function __construct(LastLoginProcessor $lastLoginProcessor) |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @inheritDoc |
||
| 33 | */ |
||
| 34 | public static function getSubscribedEvents() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @param InteractiveLoginEvent $event |
||
| 43 | */ |
||
| 44 | public function onInteractiveLogin(InteractiveLoginEvent $event) |
||
| 65 | } |
||
| 66 |