flash.moe/public/whois/whois-php/src/Whois/Result.php
2022-09-25 03:49:30 +00:00

34 lines
503 B
PHP

<?php
namespace Whois;
class Result
{
/**
* The target whois domain/ip.
*
* @var string
*/
public $target = '';
/**
* The amount of whois results.
*
* @var int
*/
public $count = 0;
/**
* The results in order from last to first
*
* @var array
*/
public $responses = [];
/**
* The result type.
* Possible values are empty, domain and ip.
*
* @var string
*/
public $type = 'empty';
}