| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class Client extends AbstractClient |
||
| 14 | { |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Construct the Whois Client Class. |
||
| 18 | */ |
||
| 19 | 60 | public function __construct() |
|
| 22 | 60 | } |
|
| 23 | |||
| 24 | /** |
||
| 25 | * Performs a Whois look up on the domain provided. |
||
| 26 | * @param string $domain The domain being looked up via whois. |
||
| 27 | * @return string The output of the Whois look up. |
||
| 28 | */ |
||
| 29 | 54 | public function lookup($domain = '') |
|
| 45 |