Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
9 | class EventDispatcher implements EventDispatcherInterface |
||
10 | { |
||
11 | /** @var ListenerProviderInterface*/ |
||
12 | private $listenerProvider; |
||
13 | |||
14 | public function __construct(ListenerProviderInterface $listenerProvider) |
||
15 | { |
||
16 | $this->listenerProvider = $listenerProvider; |
||
17 | } |
||
18 | |||
19 | public function dispatch(object $event) |
||
29 | } |
||
30 | } |
||
31 |