| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| 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 command "%s" for handling', $command)); |
||
| 36 | |||
| 37 | $this->commandBus->dispatch($command); |
||
| 38 | |||
| 39 | $this->logger->debug(sprintf('Command "%s" has been handled', $command)); |
||
| 40 | return $command; |
||
| 41 | } |
||
| 43 |