Files
2021-07-05 09:56:27 +08:00

22 lines
429 B
PHP
Executable File

<?php
/**
* User: Administrator
* Date: 2017/1/11
*/
namespace tech\result;
class FileSignResult extends AbstractResult
{
public function parseData()
{
$resp = $this->rawResponse;
$result = array();
if (isset($resp['signServiceId'])) {
$result['signServiceId'] = $resp['signServiceId'];
}
return array_merge($this->errInfo, $result);
}
}