| Total Complexity | 5 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 88.89% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | final class Dispatcher implements EventDispatcherInterface |
||
| 12 | { |
||
| 13 | private ListenerProviderInterface $listenerProvider; |
||
| 14 | |||
| 15 | 120 | public function __construct(ListenerProviderInterface $listenerProvider) |
|
| 16 | { |
||
| 17 | 120 | $this->listenerProvider = $listenerProvider; |
|
| 18 | } |
||
| 19 | |||
| 20 | 120 | public function dispatch(object $event): object |
|
| 33 | } |
||
| 34 | } |
||
| 35 |