| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 45 | private function getRoutingKeyFromMessageRoute(Message $message): string |
||
| 46 | { |
||
| 47 | if (empty($this->routes[$message->messageName()])) { |
||
| 48 | throw new RuntimeException( |
||
| 49 | sprintf( |
||
| 50 | 'Producer route key for message of name "%s" in asynchronous routing not found.', |
||
| 51 | $message->messageName() |
||
| 52 | ) |
||
| 53 | ); |
||
| 54 | } |
||
| 55 | |||
| 56 | return $this->routes[$message->messageName()]; |
||
| 57 | } |
||
| 58 | } |
||
| 59 |