<?php declare(strict_types=1); namespace Iodev\Whois\Loaders; use Iodev\Whois\Exceptions\ConnectionException; use Iodev\Whois\Exceptions\WhoisException; interface ILoader { /** * @param string $whoisHost * @param string $query * @return string * @throws ConnectionException * @throws WhoisException */ function loadText($whoisHost, $query); }