| Total Complexity | 4 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class UserLocaleSubscriber implements EventSubscriberInterface |
||
| 20 | { |
||
| 21 | private $session; |
||
| 22 | |||
| 23 | public function __construct(SessionInterface $session) |
||
| 24 | { |
||
| 25 | $this->session = $session; |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Set locale when user enters the platform. |
||
| 30 | */ |
||
| 31 | public function onInteractiveLogin(InteractiveLoginEvent $event) |
||
| 38 | } |
||
| 39 | } |
||
| 40 | |||
| 41 | public static function getSubscribedEvents() |
||
| 48 |