public function Event::isPropagationStopped in Zircon Profile 8.0
Same name and namespace in other branches
- 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
File
- vendor/
symfony/ event-dispatcher/ Event.php, line 52
Class
- Event
- Event is the base class for classes containing event data.
Namespace
Symfony\Component\EventDispatcherCode
public function isPropagationStopped() {
return $this->propagationStopped;
}