Files
conservatorio-tomadini/libraries/vendor/algo26-matthias/idna-convert/src/IdnaConvertInterface.php
2024-12-17 17:34:10 +01:00

12 lines
249 B
PHP

<?php
namespace Algo26\IdnaConvert;
interface IdnaConvertInterface
{
public function convert(string $host): string;
public function convertEmailAddress(string $emailAddress): string;
public function convertUrl(string $url): string;
}