| Name | Size | Mode | Actions |
|---|---|---|---|
| CHANGELOG.md | 157 | 0644 | editdlrm |
| composer.json | 986 | 0644 | editdlrm |
| Event.php | 1479 | 0644 | editdlrm |
| EventDispatcherInterface.php | 1038 | 0644 | editdlrm |
| LICENSE | 1068 | 0644 | editdlrm |
| README.md | 346 | 0644 | editdlrm |
/var/www/vhosts/ihelp.ro/httpdocs/vendor/symfony/event-dispatcher-contracts/Event.php (1479B)
*/ class Event implements StoppableEventInterface { private bool $propagationStopped = false; 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; } }