You are here

public static function AjaxResponseSubscriber::getSubscribedEvents in Layout Builder Modal 8

File

src/EventSubscriber/AjaxResponseSubscriber.php, line 47

Class

AjaxResponseSubscriber
Provides an event subscriber that alters Ajax Responses.

Namespace

Drupal\layout_builder_modal\EventSubscriber

Code

public static function getSubscribedEvents() {
  return [
    KernelEvents::RESPONSE => [
      [
        'onResponse',
      ],
    ],
  ];
}