You are here

protected property ContainerAwareEventDispatcher::$listeners in Service Container 7.2

Same name and namespace in other branches
  1. 7 lib/Drupal/Component/EventDispatcher/ContainerAwareEventDispatcher.php \Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher::listeners

Listener definitions.

A nested array of listener definitions keyed by event name and priority. A listener definition is an associative array with one of the following key value pairs:

  • callable: A callable listener
  • service: An array of the form [service id, method]

A service entry will be resolved to a callable only just before its invocation.

Type: array

File

lib/Drupal/Component/EventDispatcher/ContainerAwareEventDispatcher.php, line 62
Contains \Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher.

Class

ContainerAwareEventDispatcher
A performance optimized container aware event dispatcher.

Namespace

Drupal\Component\EventDispatcher

Code

protected $listeners;