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