| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | 9 | public function publish($data, $routingKey = '', array $headers = []) |
|
| 36 | { |
||
| 37 | 9 | if (!$this->running) { |
|
| 38 | 3 | throw new TransactionException('Cannot publish outside a transaction'); |
|
| 39 | } |
||
| 40 | |||
| 41 | 6 | $this->messages[] = [ |
|
| 42 | 6 | 'data' => $data, |
|
| 43 | 6 | 'routingKey' => $routingKey, |
|
| 44 | 'headers' => $headers |
||
| 45 | 6 | ]; |
|
| 46 | 6 | } |
|
| 47 | |||
| 77 |