| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | public function send(): bool |
||
| 29 | { |
||
| 30 | if (!self::$successSend) { |
||
| 31 | $this->webserviceResponse = 'An error happened !'; |
||
| 32 | $this->success = false; |
||
| 33 | } else { |
||
| 34 | $this->webserviceResponse = 'Message has been successfully sent ; MessageId : '.rand(1, 1000000); |
||
| 35 | $this->success = true; |
||
| 36 | } |
||
| 37 | |||
| 38 | return parent::send(); |
||
| 39 | } |
||
| 51 |