public static function RebuildIndex::getSubscribedEvents in Persistent URL 8
File
- src/
Event/ RebuildIndex.php, line 28  
Class
Namespace
Drupal\purl\EventCode
public static function getSubscribedEvents() {
  return array(
    // RequestSubscriber comes in at 50. We need to go before it.
    KernelEvents::REQUEST => array(
      'onRequest',
      51,
    ),
  );
}