Total Complexity | 7 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | final class BasicEventDispatcher implements EventDispatcherInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var ListenerProviderInterface |
||
23 | */ |
||
24 | private $listenerProvider; |
||
25 | |||
26 | public function __construct(ListenerProviderInterface $listenerProvider) |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @inheritDoc |
||
33 | */ |
||
34 | public function dispatch(object $event): object |
||
53 |