Файл: concrete5.7.5.6/concrete/vendor/league/url/src/Components/HostInterface.php
Строк: 44
<?php
/**
* This file is part of the League.url library
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/url/
* @version 3.3.5
* @package League.url
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace LeagueUrlComponents;
/**
* A common interface for URL segment like component
*
* @package League.url
* @since 3.1.0
*/
interface HostInterface extends SegmentInterface
{
/**
* Return the unicode string representation of a hostname
*
* @return string
*/
public function toUnicode();
/**
* Return the ascii string representation of a hostname
*
* @return string
*/
public function toAscii();
}