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

25 lines
524 B
PHP
Executable File

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