| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function create(string $urlParam, string $queryParam, string $describe) |
||
| 31 | { |
||
| 32 | $method = 'alipay.open.app.qrcode.create'; |
||
| 33 | $params = [ |
||
| 34 | 'url_param' => $urlParam, |
||
| 35 | 'query_param' => $queryParam, |
||
| 36 | 'describe' => $describe, |
||
| 37 | ]; |
||
| 38 | |||
| 39 | return $this->request($method, [ |
||
| 40 | 'biz_content' => $params, |
||
| 41 | ]); |
||
| 44 |