Update Idna-Converter to version 1.0.2 (default IDNA standard is now 2008)

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2016-06-16 11:03:02 +02:00
parent 88ccf5b869
commit 843845a825
12 changed files with 4024 additions and 3469 deletions

View File

@@ -0,0 +1,20 @@
<?php
/*
* @author Matthias Sommerfeld <mso@phlylabs.de>
* @copyright 2004-2016 phlyLabs Berlin, http://phlylabs.de
*/
namespace Mso\IdnaConvert;
interface PunycodeInterface
{
public function __construct(NamePrepDataInterface $NamePrepData, UnicodeTranscoderInterface $UCTC);
public function getPunycodePrefix();
public function decode($encoded);
public function encode($decoded);
}