| Conditions | 2 |
| Paths | 2 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 46 | #[\Override] |
||
| 47 | public function send(string $identifier, string $message) { |
||
| 48 | try { |
||
| 49 | $response = $this->client->get( |
||
|
|
|||
| 50 | 'https://api.clockworksms.com/http/send.aspx', |
||
| 51 | [ |
||
| 52 | 'query' => [ |
||
| 53 | 'key' => $this->getApiToken(), |
||
| 54 | 'to' => $identifier, |
||
| 55 | 'content' => $message, |
||
| 56 | ], |
||
| 57 | ] |
||
| 58 | ); |
||
| 59 | } catch (Exception $ex) { |
||
| 60 | throw new MessageTransmissionException(); |
||
| 61 | } |
||
| 64 |