| 1 | <?php declare(strict_types = 1); |
||
| 12 | abstract class AbstractEvent implements EventContract |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Propagation stop flag. |
||
| 16 | * |
||
| 17 | * @var bool |
||
| 18 | */ |
||
| 19 | private $propagationStop = false; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @inheritDoc |
||
| 23 | */ |
||
| 24 | 3 | public function isPropagationStopped(): bool |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @inheritDoc |
||
| 31 | */ |
||
| 32 | 2 | public function stopPropagation() |
|
| 36 | } |