489495df
*/ class Event implements StoppableEventInterface { private $propagationStopped = false; /** * {@inheritdoc} */ public function isPropagationStopped(): bool { return $this->propagationStopped; } /** * Stops the propagation of the event to further event listeners. * * If multiple event listeners are connected to the same event, no * further event listener will be triggered once any trigger calls * stopPropagation(). */ public function stopPropagation(): void { $this->propagationStopped = true; } }
If you have any questions or need help, please fill out the form below. We do our best to response within 1 business day
Copyright © 2025 Desing by ZillaPage