| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function send($to, $message, array $data = []) |
||
| 35 | { |
||
| 36 | $endpoint = $this->buildEndpoint('xsend'); |
||
| 37 | return $this->post($endpoint, [ |
||
| 38 | 'appid' => $this->config->get('app_id'), |
||
| 39 | 'signature' => $this->config->get('app_key'), |
||
| 40 | 'project' => $this->config->get('project'), |
||
| 41 | 'to' => $to, |
||
| 42 | 'vars' => json_encode($data), |
||
| 43 | ]); |
||
| 44 | } |
||
| 45 | |||
| 57 | } |