| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | public function process(AbstractCommand $command): AbstractCommand |
||
| 34 | { |
||
| 35 | $this->logger->debug(sprintf('Dispatching Events for "%s"', $command)); |
||
| 36 | |||
| 37 | $this->bufferedEventBus->flush(); |
||
| 38 | |||
| 39 | $this->logger->debug(sprintf('All events for "%s" have been dispatched', $command)); |
||
| 40 | |||
| 41 | return $command; |
||
| 42 | } |
||
| 44 |