| Name | Size | Mode | Actions |
|---|---|---|---|
| .gitignore | 34 | 0644 | editdlrm |
| CHANGELOG.md | 157 | 0644 | editdlrm |
| composer.json | 1066 | 0644 | editdlrm |
| Event.php | 1511 | 0644 | editdlrm |
| EventDispatcherInterface.php | 1007 | 0644 | editdlrm |
| LICENSE | 1065 | 0644 | editdlrm |
| README.md | 348 | 0644 | editdlrm |
/home/techb158/ileadtechnology.com/vendor/symfony/event-dispatcher-contracts/Event.php (1511B)
*/ 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; } }