Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class TacticianDomainEventDispatcherMiddleware implements Middleware |
||
13 | { |
||
14 | private EventDispatcherInterface $dispatcher; |
||
15 | |||
16 | public function __construct(EventDispatcherInterface $dispatcher) |
||
17 | { |
||
18 | $this->dispatcher = $dispatcher; |
||
19 | } |
||
20 | |||
21 | public function execute($command, callable $next) |
||
31 | } |
||
32 | } |
||
33 |