作者 刘锟

合并分支 'akun' 到 'master'

Akun



查看合并请求 !2431
... ... @@ -357,8 +357,8 @@ class DomainInfo extends Command
$start = '';
$end = '';
if (isset($response['code']) && $response['code'] == 200) {
$start = $response['text']['creation_date'];
$end = $response['text']['expiration_date'];
$start = $response['text']['creation_date'] != 'None' ? $response['text']['creation_date'] : '';
$end = $response['text']['expiration_date'] != 'None' ? $response['text']['expiration_date'] : '';
}
return ['start' => $start, 'end' => $end];
}
... ...