/home/smartonegroup/www/system/vendor/io-developer/php-whois/src/Iodev/Whois/Punycode/IPunycode.php
<?php

declare(strict_types=1);

namespace Iodev\Whois\Punycode;

interface IPunycode
{
    function encode(string $unicode): string;

    function decode(string $ascii): string;
}