| Total Complexity | 3 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class EventDispatcher implements EventDispatcherInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var SymfonyEventDispatcherInterface |
||
| 22 | */ |
||
| 23 | private $eventDispatcher; |
||
| 24 | |||
| 25 | 1 | public function __construct(SymfonyEventDispatcherInterface $eventDispatcher) |
|
| 28 | 1 | } |
|
| 29 | |||
| 30 | 1 | public function dispatch(string $eventName, Event $event): void |
|
| 37 |