22 lines
429 B
PHP
Executable File
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);
|
|
}
|
|
|
|
} |