You are here

public function EventDataCollector::setNotCalledListeners in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/DataCollector/EventDataCollector.php \Symfony\Component\HttpKernel\DataCollector\EventDataCollector::setNotCalledListeners()

Sets the not called listeners.

Parameters

array $listeners An array of not called listeners:

See also

TraceableEventDispatcherInterface

1 call to EventDataCollector::setNotCalledListeners()
EventDataCollector::lateCollect in vendor/symfony/http-kernel/DataCollector/EventDataCollector.php
Collects data as late as possible.

File

vendor/symfony/http-kernel/DataCollector/EventDataCollector.php, line 83

Class

EventDataCollector
EventDataCollector.

Namespace

Symfony\Component\HttpKernel\DataCollector

Code

public function setNotCalledListeners(array $listeners) {
  $this->data['not_called_listeners'] = $listeners;
}