function UserRequestSubscriber::getSubscribedEvents

File

core/modules/user/src/EventSubscriber/UserRequestSubscriber.php, line 69

Class

UserRequestSubscriber
Updates the current user's last access time.

Namespace

Drupal\user\EventSubscriber

Code

public static function getSubscribedEvents() : array {
  // Should go before other subscribers start to write their caches.
  $events[KernelEvents::TERMINATE][] = [
    'onKernelTerminate',
    300,
  ];
  return $events;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.