| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 2.0933 |
| Changes | 4 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 42 | 3 | public function voiceVerify($to, $code) |
|
| 43 | { |
||
| 44 | //作为寄生代理器发送语音验证码 |
||
| 45 | 3 | if (is_callable($this->voiceVerify)) { |
|
| 46 | call_user_func_array($this->voiceVerify, [$this, $to, $code]); |
||
| 47 | |||
| 48 | return; |
||
| 49 | } |
||
| 50 | //作为测试代理器 |
||
| 51 | 3 | $this->result['success'] = true; |
|
| 52 | 3 | $this->result['info'] = "send voice verify to $to success [code = $code]"; |
|
| 53 | 3 | } |
|
| 54 | } |
||
| 55 |