Default Changelist

This commit is contained in:
xl
2023-11-07 16:29:44 +08:00
parent 1a78bdb173
commit e0d1811a00
2 changed files with 6 additions and 5 deletions
+6 -4
View File
@@ -19,7 +19,7 @@ class TransferBatches extends SmallProgram
* @throws Exception
*/
#[ArrayShape(['code_url' => "string"])]
public function request(TransferDetail $detail): array
public function request(TransferDetail $detail): array|string
{
$body = [];
$body['appid'] = $this->getConfig()->getAppid();
@@ -46,8 +46,10 @@ class TransferBatches extends SmallProgram
$client->post('/v3/transfer/batches');
$client->close();
var_dump($client);
return json_decode($client->getBody(), TRUE);
$data = json_decode($client->getBody(), TRUE);
if (json_last_error() != JSON_ERROR_NONE) {
return $client->getBody();
}
return $data;
}
}