Total Complexity | 2 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | class SymfonyEventDispatcher implements EventDispatcherInterface |
||
11 | { |
||
12 | private PsrEventDispatcherInterface $dispatcher; |
||
13 | |||
14 | 29 | public function __construct(PsrEventDispatcherInterface $dispatcher) |
|
17 | 29 | } |
|
18 | |||
19 | 2 | public function dispatch(object $event, string $eventName = null): object |
|
24 |