class TestEventSubscriberWithPriorities

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Component/EventDispatcher/ContainerAwareEventDispatcherTest.php \Drupal\Tests\Component\EventDispatcher\TestEventSubscriberWithPriorities
  2. 10 core/tests/Drupal/Tests/Component/EventDispatcher/ContainerAwareEventDispatcherTest.php \Drupal\Tests\Component\EventDispatcher\TestEventSubscriberWithPriorities
  3. 11.x core/tests/Drupal/Tests/Component/EventDispatcher/ContainerAwareEventDispatcherTest.php \Drupal\Tests\Component\EventDispatcher\TestEventSubscriberWithPriorities

Hierarchy

Expanded class hierarchy of TestEventSubscriberWithPriorities

File

core/tests/Drupal/Tests/Component/EventDispatcher/ContainerAwareEventDispatcherTest.php, line 580

Namespace

Drupal\Tests\Component\EventDispatcher
View source
class TestEventSubscriberWithPriorities implements EventSubscriberInterface {
    public static function getSubscribedEvents() {
        return [
            'pre.foo' => [
                'preFoo',
                10,
            ],
            'post.foo' => [
                'postFoo',
            ],
        ];
    }

}

Members

Title Sort descending Modifiers Object type Summary
TestEventSubscriberWithPriorities::getSubscribedEvents public static function

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