You are here

public static function RebuildIndex::getSubscribedEvents in Persistent URL 8

File

src/Event/RebuildIndex.php, line 28

Class

RebuildIndex

Namespace

Drupal\purl\Event

Code

public static function getSubscribedEvents() {
  return array(
    // RequestSubscriber comes in at 50. We need to go before it.
    KernelEvents::REQUEST => array(
      'onRequest',
      51,
    ),
  );
}