| Conditions | 2 |
| Paths | 3 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | 9 | public function dispatch($command) |
|
| 36 | { |
||
| 37 | 9 | $this->transactionManager->beginTransaction(); |
|
| 38 | |||
| 39 | try { |
||
| 40 | 9 | $this->decorated->dispatch($command); |
|
| 41 | 3 | $this->transactionManager->commit(); |
|
| 42 | 8 | } catch (Exception $exception) { |
|
| 43 | 6 | $this->rollback($exception); |
|
| 44 | 3 | throw $exception; |
|
| 45 | } |
||
| 46 | 3 | } |
|
| 47 | |||
| 70 | } |