|
...
|
...
|
@@ -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];
|
|
|
|
}
|
...
|
...
|
|