| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 50 | 1 | public function getRegistrationStatus(string $companyName, string $legalPersonaWechat, string $legalPersonaName) |
|
| 51 | { |
||
| 52 | $params = [ |
||
| 53 | 1 | 'name' => $companyName, |
|
| 54 | 1 | 'legal_persona_wechat' => $legalPersonaWechat, |
|
| 55 | 1 | 'legal_persona_name' => $legalPersonaName, |
|
| 56 | ]; |
||
| 57 | |||
| 58 | 1 | return $this->httpPostJson('cgi-bin/component/fastregisterweapp', $params, ['action' => 'search']); |
|
| 59 | } |
||
| 61 |