| Total Complexity | 3 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 11 | #[Package('core')] |
||
| 12 | class DummyEvent extends Event implements FlowEventAware |
||
| 13 | { |
||
| 14 | public static function getAvailableData(): EventDataCollection |
||
| 15 | { |
||
| 16 | return new EventDataCollection(); |
||
| 17 | } |
||
| 18 | |||
| 19 | public function getName(): string |
||
| 22 | } |
||
| 23 | |||
| 24 | public function getContext(): Context |
||
| 27 | } |
||
| 28 | } |
||
| 29 |