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