You are here

public function Event::isPropagationStopped in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/event-dispatcher/Event.php \Symfony\Component\EventDispatcher\Event::isPropagationStopped()

Returns whether further event listeners should be triggered.

Return value

bool Whether propagation was already stopped for this event.

See also

Event::stopPropagation()

File

vendor/symfony/event-dispatcher/Event.php, line 52

Class

Event
Event is the base class for classes containing event data.

Namespace

Symfony\Component\EventDispatcher

Code

public function isPropagationStopped() {
  return $this->propagationStopped;
}