| 1 | <?php |
||
| 11 | class Event implements EventInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var bool Whether no further event listeners should be triggered |
||
| 15 | */ |
||
| 16 | protected $propagationStopped; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var array |
||
| 20 | */ |
||
| 21 | protected $params; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param array $params |
||
| 25 | */ |
||
| 26 | 13 | public function __construct(array $params = []) |
|
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | 1 | public function isPropagationStopped() : bool |
|
| 40 | |||
| 41 | /** |
||
| 42 | * {@inheritdoc} |
||
| 43 | */ |
||
| 44 | 9 | public function stopPropagation() |
|
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritdoc} |
||
| 51 | */ |
||
| 52 | 4 | public function getParams() : array |
|
| 56 | } |
||
| 57 |