| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 52 | public function authenticate(FilterUserResponseEvent $event) |
||
| 53 | { |
||
| 54 | try { |
||
| 55 | $this->loginManager->logInUser($this->firewallName, $event->getUser(), $event->getResponse()); |
||
| 56 | } catch (AccountStatusException $e) { |
||
| 57 | // We simply do not authenticate users which do not pass the user |
||
| 58 | // checker (not enabled, expired, etc.). |
||
| 59 | } |
||
| 60 | } |
||
| 61 | } |
||
| 62 |