File "IdnaConvertInterface.php"
Full path: /home/argothem/www/organecyberpresse/vendor/algo26-matthias/idna-convert/src/IdnaConvertInterface.php
File size: 249 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Algo26\IdnaConvert;
interface IdnaConvertInterface
{
public function convert(string $host): string;
public function convertEmailAddress(string $emailAddress): string;
public function convertUrl(string $url): string;
}