| Conditions | 2 |
| Paths | 3 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 48 | 6 | public function publish(DomainEventStream $domainMessages) |
|
| 49 | { |
||
| 50 | 6 | $this->transactionManager->beginTransaction(); |
|
| 51 | try { |
||
| 52 | 6 | $this->eventBus->publish($domainMessages); |
|
| 53 | 3 | $this->transactionManager->commit(); |
|
| 54 | 5 | } catch (\Exception $e) { |
|
| 55 | 3 | $this->transactionManager->rollback(); |
|
| 56 | 3 | throw $e; |
|
| 57 | } |
||
| 58 | 3 | } |
|
| 59 | } |
||
| 60 |