| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | 4 | public function send(MessageInterface $message): void |
|
| 37 | { |
||
| 38 | 4 | for ($i = 0; $i < $this->retryCount; $i++) { |
|
| 39 | try { |
||
| 40 | 4 | $this->decoratedTransport->send($message); |
|
| 41 | 3 | return; |
|
| 42 | 3 | } catch (ConnectionRefusedException $e) { |
|
|
|
|||
| 43 | } |
||
| 44 | } |
||
| 45 | |||
| 46 | 1 | throw new ConnectionRefusedException('Cannot send e-mail, connection failed'); |
|
| 47 | } |
||
| 48 | } |
||
| 49 |