| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | public function transfer(string $externalUserId, string $handoverUserId, string $takeoverUserId) |
||
| 44 | { |
||
| 45 | $params = [ |
||
| 46 | 'external_userid' => $externalUserId, |
||
| 47 | 'handover_userid' => $handoverUserId, |
||
| 48 | 'takeover_userid' => $takeoverUserId |
||
| 49 | ]; |
||
| 50 | |||
| 51 | return $this->httpPostJson('cgi-bin/externalcontact/transfer', $params); |
||
| 52 | } |
||
| 55 | } |